12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Windows.Forms;
- namespace Optimizer {
- public sealed partial class SubForm : Form {
- public SubForm() {
- InitializeComponent();
- CheckForIllegalCrossThreadCalls = false;
- this.DoubleBuffered = true;
- OptionsHelper.ApplyTheme(this);
- btnStart.Focus();
- btnStart.Select();
- }
- internal void SetTip(string tip) {
- txtInfo.Text = tip;
- btnStart.Focus();
- btnStart.Select();
- }
- private void btnStart_Click(object sender, EventArgs e) {
- this.Close();
- }
- private void SubForm_Load(object sender, EventArgs e) {
- OptionsHelper.ApplyTheme(this);
- }
- }
- }
|