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) { } } }