سلام دوستان
می خوام چهار گوشش کمان بشه مثل عکس ضمیمه ؟؟؟؟؟؟؟؟
باید چکار کنم؟؟؟؟؟؟
Printable View
سلام دوستان
می خوام چهار گوشش کمان بشه مثل عکس ضمیمه ؟؟؟؟؟؟؟؟
باید چکار کنم؟؟؟؟؟؟
از کد زیر استفاده کنید:
[DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")]
private static extern IntPtr CreateRoundRectRgn
(
int nLeftRect, // x-coordinate of upper-left corner
int nTopRect, // y-coordinate of upper-left corner
int nRightRect, // x-coordinate of lower-right corner
int nBottomRect, // y-coordinate of lower-right corner
int nWidthEllipse, // height of ellipse
int nHeightEllipse // width of ellipse
);
public FormName()
{
InitializeComponent();
Region = System.Drawing.Region.FromHrgn(CreateRoundRectRgn( 0, 0, Width + 1, Height + 1, 20, 20)); // adjust these parameters to get the look
}
باتشکر احسان