Notice
Recent Posts
Recent Comments
목록C# 버튼 (1)
분노의 챔질
반응형
C# 컨트롤 동적 생성
Button b = new Button();b.Name = "btnTest";b.TextAlign = ContentAlignment.MiddleLeft;b.Font = new Font("맑은 고딕", 11, FontStyle.Bold);b.Text = "버튼";b.Size = new Size(250, 50);b.Location = new Point(10, 10);b.BringToFront();b.MouseClick += btn_MouseClick;panel3.Controls.Add(b); 버튼으로
Programming/C#
2024. 8. 13. 09:32
반응형