FileRestoreForm.cs 632 B

12345678910111213141516171819202122232425262728293031
  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. using Y.Skin.YoForm.NoTitle;
  11. namespace Oreo.FileMan.Views
  12. {
  13. public partial class FileRestoreForm : NoTitleForm
  14. {
  15. public FileRestoreForm()
  16. {
  17. InitializeComponent();
  18. }
  19. private void FileRestoreForm_Load(object sender, EventArgs e)
  20. {
  21. }
  22. private void BtClose_Click(object sender, EventArgs e)
  23. {
  24. Close();
  25. }
  26. }
  27. }