상단의 사진 처럼 스크롤바를 이용해 rgb색상을 panel에 출력해보도록하자. 도구상자에서 Panel를 끌어옴. 그리고 Label, ScrollBar 그리고 TextBox까지. * scrollbar는 검색상자를 통해 검색하여서 끌어와야한다. 각각의 TextBox는 txtR,txtG,txtB로 이름을 바꾸어주자 + scrollbar도 scrR,scrG,scrB로 바꾸자. public Form1() //생성자 { InitializeComponent(); this.BackColor = Color.LightSteelBlue; panel1.BackColor = Color.FromArgb(0, 0, 0);// =Color.Black; txtR.Text = "0"; txtG.Text = "0"; txtB.Text =..