//------- Help 메뉴의  About 클릭시 발생 하는 이벤트 --------
        void AboutOnClick(object sender, RoutedEventArgs args)
        {
            // 다이얼로그 객체 생성 (인자로 자신의 주소값을 넘김)
            // AboutDialog ==> 띄울 다이얼로그의 이름
            AboutDialog dlg = new AboutDialog(this);

            // 모달 대화상자 띄우기 (이 다음부터 AboutDialog 클래스 실행)
            dlg.ShowDialog();
        }
 void AboutOnClick(object sender, RoutedEventArgs args)
 {
     AboutDialog dlg = new AboutDialog(this);
     dlg.ShowDialog();
 }
Ejemplo n.º 3
0
        void AboutOnClick(object sender, RoutedEventArgs args)
        {
            AboutDialog dlg = new AboutDialog(this);

            dlg.ShowDialog();
        }