Paint 이벤트처리기 : https://petra.tistory.com/1549 1 2 3 4 5 6 7 8 9 10 11 class Class1 : System.Windows.Forms.Form { public static void Main() { Class1 form = new Class1(); form.Text = "Form 상속"; form.BackColor = System.Drawing.Color.White; System.Windows.Forms.Application.Run(form); // 이 코드가 없으면 창이 나왔다가 바로 사라지면서 종료된다. } } Colored by Color Scripter cs 실행결과> 1 2 3 4 5 6 7 8 9 10 11 12 13 class Class1..
윈도우 폼 기본코드 : https://petra.tistory.com/1548 Paint 이벤트 폼의 클라이언트 영역 전체 혹은 일부를 다시 그려저야할때 발생하는 이벤트 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 class Class1 { public static void Main() { System.Windows.Forms.Form form = new System.Windows.Forms.Form(); form.Text = "Paint Event"; form.Paint += new System.Windows.Forms.PaintEventHandler(MyPaintHandler); System.Windows.Forms.Application.Run(form); // 이 코드가 없..
콘솔 기본코드 : https://petra.tistory.com/1547 1 2 3 4 5 6 7 class Class1 { public static void Main() { System.Windows.Forms.MessageBox.Show("Hello, world!"); } } Colored by Color Scripter cs 빈프로젝트 만들고 프로젝트에 클래스 파일 추가하고 위 코드를 입력한다. 윈도우 폼 프로그램이기 때문에 System, System.Drawing, System.Windows.Forms DLL 3개가 필요하다. 솔루션 탐색기에서 참조를 마우스 우측 버튼으로 클릭하여 참조추가를 선택한다. 아래 그림처럼 System을 체크표시하고 나머지 System.Drawing, System.Win..
1 2 3 4 5 6 7 8 class Class1 { public static void Main() { System.Console.WriteLine("Hellow, world!"); System.Console.ReadLine(); // 콘솔창이 바로 닫혀 입력 대기하도록 한다. } } Colored by Color Scripter cs C# 프로젝트를 빈 프로젝트를 만들고 프로젝트에 클래스 파일을 추가하고 위 코드를 입력하고 실행한다. Class1 클래스 이름이 소스파일(Class1.cs) 이름이 된다. 프로그램 시작은 Main() 에서 시작하고 Main()는 클래스 정의 안에 static 멤버변수로 만들어야 한다. 만약, static 멤버 함수로 지정하지 않으면 컴파일 에러 난다. main() 이 아..