전체 글 (1629) 썸네일형 리스트형 버튼 클릭시 색 넣기를 한번에 처리하기, 메소드로 묵어서 처리를 단계별로 보여줌 모든 컨트롤은 Tag가 존재한다 모든지 다넣을수 있다. Tag : 빈방, 넣고 싶은걸 마음대로 넣는다. 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 Button02 : Form { public Button02() { InitializeComponent(); } private void button1_Click(object sender, Eve.. Visible, FlatStyle, AutoSize, 니모닉(nemonic), TabIndex, TextAlign, 등 각종 속성 니모닉 : 만드는 법은 텍스트로 -> 테스트(&T) 이러한 형태로 만든다. 이미지 저장은 \bin\Debug 폴더에서 img 폴더를 만들어서 관리하는 것이 리소스 관리에 편하다. 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 Button01 : Form { public Button01() { InitializeComponent(); } pri.. 컨테이너, 탭컨트롤 (TabControl) 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 TabControl01 : Form { public TabControl01() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { //자식역할 Button btn = new Button(); //할아.. 패널(Panel) 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 Panel01 : Form { private TextBox txt; public Panel01() { InitializeComponent(); txt = new TextBox(); } private void button1_Click(object sender, EventArgs e) { //폼 or.. 윈폼(winform) 이벤트, 상속 버튼 생성, 데이트타입 이용 예제 윈폼(winform) 이벤트, 상속 버튼 생성, 데이트타입 이용 예제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 System.Collections; namespace WindowsForms01{ public partial class Study01 : Form { private int a; private int b; private int c; private int d; private int f; public Study01() { .. 컨트롤(Control) 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 Control01 : Form { //부모컨트롤 - 자식컨트롤 //컨테이너 컨트롤 : 자신의 영역내에 다른 컨트롤을 추가할수 있는 컨트롤. //(추가된 컨트롤 == 자식 컨트롤) private Button btn = new Button(); public Control01() { Initialize.. 키(Key), 마우스(Mouse) 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 Key01 : Form { //키(키보드) 관련 이벤트 //1. KeyDown : 키를 눌렀을때 // - 물리적인 키에 반응하는 이벤트 // - A키 다운 -> a? A? ㅁ? 구분X // - 키보드에 있는 모든 키에 반응(***); //2. KeyUp : 키를 뗏을떄 // - KeyDown의 반.. 메세지박스(MessageBox) 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 Message01 : Form { public Message01() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { //메시지 박스 //MessageBox.Show -> 블럭 DialogResul.. 이전 1 ··· 186 187 188 189 190 191 192 ··· 204 다음