728x90
반응형
1 2 3 4 5 6 7 8 | [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")] private static extern IntPtr CreateRoundRectRgn(int nLeftRect, int nTopRect, int nRightRect, int nBottomRect, int nWidthEllipse, int nHeightEllipse); private void Form1_Load(object sender, EventArgs e) { pnlComponent.Region = Region.FromHrgn(CreateRoundRectRgn(0, 0, pnlComponent.Width, pnlComponent.Height, 15, 15)); lblCAM.Region = Region.FromHrgn(CreateRoundRectRgn(0, 0, lblCAM.Width, lblCAM.Height, 15, 15)); lblPOWER.Region = Region.FromHrgn(CreateRoundRectRgn(0, 0, lblPOWER.Width, lblPOWER.Height, 15, 15)); } | cs |
728x90
반응형
'IT > C#' 카테고리의 다른 글
[C# winform] TextBox 커서 자동으로 깜빡이게 (0) | 2019.01.10 |
---|---|
[C#] PictureBox 이미지 자르고 적용하기 (0) | 2018.12.05 |
[C#] WinForm 마우스 클릭 이동으로 움직이기 (0) | 2018.11.26 |
[C#] 마우스 휠 이벤트에 따른 확대, 축소 (+ 마우스 위치 확대)(+21.02.22 재수정) (35) | 2018.11.22 |
[C#] OMRON PLC Test Program (6) | 2018.11.15 |