[SIMPLE C#] 둥근버튼(Round Button) 만들기
나만의 컨트롤 만들기 1탄! Round Button ※ 모서리를 지정 값 만큼 둥글게 만들어서 path 를 반환 하는 함수 private GraphicsPath CreateRoundRectPath(int x, int y, int width, int height, int cornerRadius) { GraphicsPath path = new GraphicsPath(); if (cornerRadius == 0) { path.AddRectangle(new Rectangle(x, y, width, height)); } else { path.AddArc(x, y, cornerRadius, cornerRadius, 180, 90); // 왼쪽 상단 모서리 path.AddArc(x + width - cornerRad..