InfoForm.cs 476 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Windows.Forms;
  3. namespace Optimizer
  4. {
  5. public partial class InfoForm : Form
  6. {
  7. public InfoForm(string info)
  8. {
  9. InitializeComponent();
  10. Options.ApplyTheme(this);
  11. txtInfo.Text = info;
  12. }
  13. private void btnOK_Click(object sender, EventArgs e)
  14. {
  15. this.Close();
  16. }
  17. private void Info_Load(object sender, EventArgs e)
  18. {
  19. }
  20. }
  21. }