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(); }
protected override void Dispose() { this.screen = null; base.Dispose(); }