UserTools.cs 501 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Drawing.Drawing2D;
  5. using System.Drawing.Imaging;
  6. using System.Linq;
  7. using System.Runtime.InteropServices;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. namespace IntelligentControlForsx.Code
  12. {
  13. public static class UserTools
  14. {
  15. public static string Path
  16. {
  17. get { return path; }
  18. }
  19. static string path = Application.StartupPath;
  20. }
  21. }