Update firmware updater

This commit is contained in:
radiomanV
2018-08-12 21:57:06 +03:00
parent 8ff8deda94
commit e6f52b0c7c
2 changed files with 9 additions and 0 deletions

View File

@@ -551,6 +551,10 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "TL866 firmware updater";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
this.Resize += new System.EventHandler(this.MainForm_SizeChanged);
this.StyleChanged += new System.EventHandler(this.MainForm_SizeChanged);
this.SystemColorsChanged += new System.EventHandler(this.MainForm_SizeChanged);
this.TabPage2.ResumeLayout(false);
this.GroupBox3.ResumeLayout(false);
this.GroupBox3.PerformLayout();

View File

@@ -60,6 +60,11 @@ namespace TL866
usbdevice.RegisterForDeviceChange(false, this);
}
private void MainForm_SizeChanged(object sender, EventArgs e)
{
TabPage1.Refresh();
TabPage2.Refresh();
}
private void BtnInput_Click(object sender, EventArgs e)
{