Ejemplo n.º 1
0
 private void OnPlayboxEvent(UMPEventArgs e)
 {
     if (PlayboxEvent != null)
     {
         PlayboxEvent(this, e);
     }
 }
Ejemplo n.º 2
0
        void IsaPlaybox_Closing(object sender, CancelEventArgs e)
        {
            UMPEventArgs args = new UMPEventArgs();

            args.Code = Defines.EVT_PAGE_UNLOADED;
            args.Data = ImgVedio;
            OnPlayboxEvent(args);
        }
Ejemplo n.º 3
0
        void IsaPlaybox_Loaded(object sender, RoutedEventArgs e)
        {
            UMPEventArgs args = new UMPEventArgs();

            args.Code = Defines.EVT_PAGE_LOADED;
            args.Data = ImgVedio;
            OnPlayboxEvent(args);
            //SetScreenScale();
        }
Ejemplo n.º 4
0
 private void OnPasswordManagerEventEvent(int code, object data)
 {
     if (PasswordManagerEventEvent != null)
     {
         UMPEventArgs args = new UMPEventArgs();
         args.Code = code;
         args.Data = data;
         RoutedPropertyChangedEventArgs <UMPEventArgs> a = new RoutedPropertyChangedEventArgs <UMPEventArgs>(
             null, args);
         a.RoutedEvent = PasswordManagerEventEvent;
         RaiseEvent(a);
     }
 }