Exemplo n.º 1
0
        private void ShowDetailsForm()
        {
            if (this.detailForm == null)
            {
                this.detailForm = new RealTimeForm(this.BeforeCloseDetailForm);
            }

            this.detailForm.Show();
        }
Exemplo n.º 2
0
 private void BeforeCloseDetailForm()
 {
     this.detailForm = null;
 }
Exemplo n.º 3
0
        private void ShowDetailsForm()
        {
            if (this.detailForm == null)
            {
                this.detailForm = new RealTimeForm(this.BeforeCloseDetailForm);
            }

            this.detailForm.Show();
        }
Exemplo n.º 4
0
 private void BeforeCloseDetailForm()
 {
     this.detailForm = null;
 }
Exemplo n.º 5
0
 private void detailsButton_Click(object sender, EventArgs e)
 {
     this.detailForm = new RealTimeForm(() =>
     {
         this.detailForm = null;
     });
     this.detailForm.Show();
 }