Example #1
0
 private void konfiguracjaToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (configuration == null)
     {
         configuration = new ClientConfigurationForm();
     }
     else
     {
         configuration.Visible = true;
     }
 }
Example #2
0
 public ClientForm()
 {
     InitializeComponent();
     configuration = new ClientConfigurationForm();
 }