Default.cs 775 B

123456789101112131415161718192021222324252627282930313233
  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.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace WinForms
  11. {
  12. public partial class Default : Form
  13. {
  14. public Default()
  15. {
  16. InitializeComponent();
  17. }
  18. private void toolStripButton2_Click(object sender, EventArgs e)
  19. {
  20. Configure configureForm = new Configure();
  21. configureForm.TopLevel = false;
  22. configureForm.Show();
  23. }
  24. private void button10_Click(object sender, EventArgs e)
  25. {
  26. SelectWork selectWork = new SelectWork();
  27. selectWork.ShowDialog();
  28. }
  29. }
  30. }