1234567891011121314151617181920212223242526 |
- using System;
- using System.Windows.Forms;
- namespace Optimizer
- {
- public partial class InfoForm : Form
- {
- public InfoForm(string info)
- {
- InitializeComponent();
- Options.ApplyTheme(this);
- txtInfo.Text = info;
- }
- private void btnOK_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void Info_Load(object sender, EventArgs e)
- {
- }
- }
- }
|