Ejemplo n.º 1
0
        private static void AnimationEditorTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
        {
            animationEditorTimer.Stop();

            System.Windows.Application.Current.Dispatcher.Invoke(() =>
            {
                if (frmLiveAnimationEditor == null)
                {
                    frmLiveAnimationEditor = new FrmLiveAnimationEditor();
                }

                frmLiveAnimationEditor.Show();
            });

            // image_source
            //HubtasticBaseStation.ShowImageFront(@"Editor/FrontTest.png");
            //HubtasticBaseStation.ShowImageBack(@"Editor/BackTest.png");
        }
Ejemplo n.º 2
0
 public static void ClosingEditor()
 {
     frmLiveAnimationEditor = null;
 }