forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSystem.cs
45 lines (37 loc) · 1.27 KB
/
System.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Security.Permissions;
using System.Text;
using System.Threading;
using System.Windows.Forms;
namespace System
{
public class Application11
{
public static string ExecutablePath { get {return System.Windows.Forms.Application.ExecutablePath;} }
public static string StartupPath { get { return System.Windows.Forms.Application.StartupPath; } }
public static void DoEvents()
{
System.Windows.Forms.Application.DoEvents();
}
public static string ProductVersion { get { return System.Windows.Forms.Application.ProductVersion; } }
public static void Exit()
{
System.Windows.Forms.Application.Exit();
}
public static void EnableVisualStyles()
{
System.Windows.Forms.Application.EnableVisualStyles();
}
public static void SetCompatibleTextRenderingDefault(bool p)
{
System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(p);
}
public static void Run(Form mainV2)
{
System.Windows.Forms.Application.Run(mainV2);
}
}
}