NewTask.cs 381 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Windows.Forms;
  3. using DevExpress.XtraEditors;
  4. using System.IO;
  5. using System.Diagnostics;
  6. namespace Uninpho.Tools
  7. {
  8. public partial class NewTask : DevExpress.XtraEditors.XtraForm
  9. {
  10. private bool taskPedding = false;
  11. public NewTask()
  12. {
  13. InitializeComponent();
  14. }
  15. }
  16. }