상속1 클래스를 상속받아 윈도우 응용 프로그램 구현하기 보통 Application 클래스를 상속받아 윈도우 응용프로그램을 만들 수도 있지만 Window 클래스를 상속받아 윈도우 응용프로그램을 만드는 것도 가능합니다. Window 클래스를 상속받아 하나의 파일에서 정의하는 것이 조금 더 일반적이며 더 쉬운 방법이라고 할 수 있습니다. using System; using System.Windows; using System.Windows.Input; namespace Chapter1 { class InheritTheWin : Window { [STAThread] public static void Main() { Application app = new Application(); app.Run(new InheritTheWin()); } public InheritThe.. 2008. 1. 8. 이전 1 다음