Programming (421) 썸네일형 리스트형 Resource 폼의 resx파일에 등록한 리소스 : 지역 리소스이며 (해당폼안에서만 사용가능) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Start.Properties; namespace Start { public partial class Resource : Form { public Resource() { InitializeComponent(); } private void Resource_Load(object sender, E.. 스크롤바, TrackBar, 픽쳐박스 윈폼 : BMP 방식: 점+점 WPF : 벡터 방식: 점+점 = 선 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Start { public partial class ScrollBar : Form { private Label lb; public ScrollBar() { InitializeComponent(); lb = new Label(); } private void button1_Click(object se.. Select, 달력컨트롤, DateTimePicker 사용자에게 숫자만 입력받을때는 Select 컨트롤을 사용하는 것이 좋다. 각종 검사를 할때 Select는 숫자만 입력할수 있다. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Start { public partial class Select : Form { public Select() { InitializeComponent(); } private void button1_Click(object sender, Ev.. 콤보박스(Combo Box) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Test { public partial class ListBox02 : Form { public ListBox02() { InitializeComponent(); } private void ListBox03_Load(object sender, EventArgs e) { //동적 항목 추가 for (int i = 1; i < 10; i++) { comboBox1.I.. 리스트 박스, 문자열 리스트박스는 문자열이 들어가 있고 컨트롤스 컬렉션 대신 items 배열에 들어가 있다. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Test { public partial class ListBox01 : Form { public ListBox01() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { //lis.. 이미지 객체 생성 및 이미지 무브 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Test { public partial class Teachar03 : Form { private string path; public Point temp; public Teachar03() { InitializeComponent(); path = @"D:\새 폴더\Test\bin\Debug\img\images.jpg"; temp = new Point(0, 0); .. 동적 버튼 생성 동적 버튼 액션 생성 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Test { public partial class Teachar01 : Form { private int x; private int y; private int count; public Teachar01() { InitializeComponent(); x = 10; y = 10; count = 1; } private void Teachar01_Load(object .. 체크박스, 컨트롤 체크박스는 배열에 넣을때 일일이 넣어줘야 한다. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsForms01 { public partial class CheckBox01 : Form { //체크박스 배열 List list; public CheckBox01() { InitializeComponent(); list = new List(); } private void button1_Click(objec.. 이전 1 ··· 34 35 36 37 38 39 40 ··· 53 다음