-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBindings.xml
27 lines (27 loc) · 874 Bytes
/
Bindings.xml
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
<Bindings>
<Binding name="CUBE_CODE" header="CUBE">
if IGAS.UIParent.Cube_Main then
IGAS.UIParent.Cube_Main.Visible = not IGAS.UIParent.Cube_Main.Visible
end
</Binding>
<Binding name="CUBE_DEBUG">
if IGAS.UIParent.Cube_Debug then
IGAS.UIParent.Cube_Debug.Visible = not IGAS.UIParent.Cube_Debug.Visible
end
</Binding>
<Binding name="CUBE_BUGLIST">
if IGAS.UIParent.Cube_BugList then
IGAS.UIParent.Cube_BugList.Visible = not IGAS.UIParent.Cube_BugList.Visible
end
</Binding>
<Binding name="CUBE_LOGVIEW">
if IGAS.UIParent.Cube_LogView then
IGAS.UIParent.Cube_LogView.Visible = not IGAS.UIParent.Cube_LogView.Visible
end
</Binding>
<Binding name="CUBE_BROWSER">
if IGAS.UIParent.Cube_Browser then
IGAS.UIParent.Cube_Browser.Visible = not IGAS.UIParent.Cube_Browser.Visible
end
</Binding>
</Bindings>