SettingsForm.cs 683 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace Oreo.BigBirdDeployer.Views
  10. {
  11. public partial class SettingsForm : Form
  12. {
  13. public SettingsForm()
  14. {
  15. InitializeComponent();
  16. }
  17. private void BTSave_Click(object sender, EventArgs e)
  18. {
  19. if (Save())
  20. Close();
  21. }
  22. private void BTCancel_Click(object sender, EventArgs e)
  23. {
  24. Close();
  25. }
  26. private bool Save()
  27. {
  28. return false;
  29. }
  30. }
  31. }