Exemplo n.º 1
0
        private void HookLivePreviewFormEvents()
        {
            this.LivePreviewForm.SizeChanged += (s, e) =>
            {
                this.previewFormSize = this.LivePreviewForm.Size;
            };

            this.LivePreviewForm.FormClosing += (s, e) =>
            {
                this.tsmShowLivePreview.Checked = false;
                this.OnUnhookLivePreviewFormEvents();
                this.previousimeViewControl = this.LivePreviewForm.TimeViewControl;
                this.previousCommandIssuer  = this.LivePreviewForm.CommandIssuer;
            };
        }
Exemplo n.º 2
0
 public SimpleTimerView(TimerViewerCommandIssuer commandIssuer)
     : this()
 {
     this.CommandIssuer = commandIssuer;
 }
Exemplo n.º 3
0
 public PresentationTimerForm(TimerViewerCommandIssuer commandIssuer)
     : this()
 {
     this.CommandIssuer = commandIssuer;
 }