forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.py
54 lines (39 loc) · 1.65 KB
/
ui.py
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
46
47
48
49
50
51
52
53
54
#!/usr/bin/ipy
import clr
import System
clr.AddReference("System.Windows.Forms")
#clr.AddReference("System.Drawing")
clr.AddReference("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")
clr.AddReference("System")
clr.ClearProfilerData()
from System.Windows.Forms import Application, Form, Label
from System.Drawing import Size, Point, Font, Size
print "MissionPlanner.Drawing" in [assembly.GetName().Name for assembly in clr.References]
print "System.Drawing" in [assembly.GetName().Name for assembly in clr.References]
for index, item in enumerate(clr.References):
if item.GetName().Name == "System.Drawing":
drawing = item
font = drawing.GetType("System.Drawing.Font")
print dir(font)
font = System.Activator.CreateInstance(font, "Arial", 12)
print "dir ", dir(font)
####################################
# GUI Iform CODE STARTS HERE #
####################################
class IForm(Form):
def __init__(self):
self.my_label = Label()
self.my_label.Text= "Fonts work"
self.my_label.Location = Point(10,35)
self.my_label.Height = 30
self.my_label.Width = self.Width - 150
try:
self.my_label.Font = System.Drawing.Font("Arial", 12)
except:
self.my_label.Text = "font not found"
self.Controls.Add(self.my_label)
self.my_label.Font = font #Font("Arial", 20)
##############################
# end GUI stuff #
##############################
Application.Run(IForm()) #run the Iform...