Form2.cs 548 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace DefSorter
  9. {
  10. public partial class Form2 : Form
  11. {
  12. public Form2()
  13. {
  14. InitializeComponent();
  15. }
  16. private void button1_Click(object sender, EventArgs e)
  17. {
  18. Application.Exit();
  19. }
  20. private void label11_Click(object sender, EventArgs e)
  21. {
  22. }
  23. }
  24. }