public SetBorderWidthForm(string WidthTextBox, MainWindow mWindow)
 {
     InitializeComponent();
     this.SetWidthTextBox.Text = WidthTextBox;
     this.mainWindow = mWindow;
 }
Example #2
0
 public SetNameForm(string NameTextBox, MainWindow mWindow)
 {
     InitializeComponent();
     this.SetNameTextBox.Text = NameTextBox;
     this.mainWindow = mWindow;
 }