Exemplo n.º 1
0
 protected void OnButtonInputClicked(object sender, EventArgs e)
 {
     if (InputDocsWin == null)
     {
         InputDocsWin              = new InputDocs();
         InputDocsWin.DeleteEvent += OnDeleteInputDocsEvent;
         Console.WriteLine("new");
     }
     InputDocsWin.Maximize();
     InputDocsWin.Show();
 }
Exemplo n.º 2
0
 protected void OnDeleteInputDocsEvent(object s, DeleteEventArgs arg)
 {
     InputDocsWin.Destroy();
     InputDocsWin = null;
 }
Exemplo n.º 3
0
 protected void OnButtonInputClicked(object sender, EventArgs e)
 {
     if(InputDocsWin == null)
     {
         InputDocsWin = new InputDocs();
         InputDocsWin.DeleteEvent += OnDeleteInputDocsEvent;
         Console.WriteLine ("new");
     }
     InputDocsWin.Maximize ();
     InputDocsWin.Show ();
 }
Exemplo n.º 4
0
 protected void OnDeleteInputDocsEvent( object s, DeleteEventArgs arg)
 {
     InputDocsWin.Destroy ();
     InputDocsWin = null;
 }