Exemplo n.º 1
0
        protected void OnShow( Object Sender, INotification Notification )
        {
            #if DEBUG
            Debug.WriteLine( this + ".OnShow();\n\tNoteType: " + Notification.Type + "\n---" );
            #endif

             			this.screen = new StartupScreen( this.Component );
            this.screen.OnCloseClicked += this.OnCloseClicked;
            this.screen.OnTimerFinished += this.OnTimerFinished;
            this.screen.Initialize();
            this.screen.Show();
        }
Exemplo n.º 2
0
        protected override void Dispose()
        {
            this.screen = null;

            base.Dispose();
        }