Interaction logic for PresentationOverlay.xaml
Inheritance: System.Windows.Window
コード例 #1
0
ファイル: ThisAddIn.cs プロジェクト: atosorigin/Kinect
 private void Application_SlideShowEnd(Presentation Pres)
 {
     if (_overlay != null)
     {
         _overlay.Close();
         _overlay = null;
     }
 }
コード例 #2
0
ファイル: ThisAddIn.cs プロジェクト: atosorigin/Kinect
 private void Application_SlideShowBegin(SlideShowWindow Wn)
 {
     if (_overlay == null)
     {
         _overlay = new PresentationOverlay();
         _overlay.DataContext = new PresentationOverlayViewModel {SlideShowWindow = Wn};
         _overlay.Show();
     }
 }