event2 이벤트 안에서 현재의 윈도우 객체 구하기 WPF 이벤트 안에서 현재의 윈도우 객체 구하기 ※ 코드예제는 찰스 페졸트의 WPF에서 참고하였습니다. using system; using system.windows; using system.windows.input; namespace chapter1 { class handleanevent { [stathread] static void main() { application app = new application(); window win = new window(); win.title = "handle an event"; win.mousedown += new mousebuttoneventhandler(win_mousedown); app.run(win); } static void win_mousedown(ob.. 2007. 12. 14. 응용프로그램 Application 클래스 이벤트 처리 WPF 응용 프로그램에서 Application 클래스의 이벤트들을 처리할 필요가 있다면 해당하는 이벤트에 대한 이벤트 핸들러를 설치해야 하지만, 가장 편리한 방법은 Application 클래스를 상속하는 클래스를 정의하는 방법입니다. using System; // Application 클래스를 포함하는 Namespace 선언 using System.Windows; using System.Windows.Input; namespace Chapter1 { // Application 클래스 상속 class InheritApp : Application { [STAThread] public static void Main() { InheritApp app = new InheritApp (); app.Run(); } .. 2007. 12. 13. 이전 1 다음