mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
47 lines
910 B
Plaintext
47 lines
910 B
Plaintext
.export Default 0 UI
|
|
.export Alt 0 UI
|
|
|
|
.import-type UI
|
|
.import-type Dictionary
|
|
.import-ns assembly://UIX/Microsoft.Iris as iris
|
|
.import-type iris:Command
|
|
.import-type String
|
|
.import-type ViewItem
|
|
.import-type Text
|
|
.import-type Color
|
|
.import-type Font
|
|
.import-mbrs UI{Locals, Content}
|
|
.import-mbrs Text{Color, Content, Font}
|
|
|
|
.constant const0 = Color(255, 255, 0, 0)
|
|
.constant const1 = String(Howdy from Microsoft.Iris!)
|
|
.constant const2 = String(SelectCommand)
|
|
.constant const3 = Color(255, 0, 0, 255)
|
|
.constant const4 = Font(JetBrains Mono)
|
|
.constant const5 = String(This is some blue text)
|
|
.section object
|
|
|
|
Default_cont:
|
|
COBJ 5
|
|
PSHC @const0
|
|
PINI 2
|
|
PSHC @const1
|
|
PINI 3
|
|
PINI 1
|
|
RETV
|
|
Default_locl:
|
|
COBJ 2
|
|
PDAD 0, @const2
|
|
RETV
|
|
Alt_cont:
|
|
COBJ 5
|
|
PSHC @const3
|
|
PINI 2
|
|
PSHC @const4
|
|
PINI 4
|
|
PSHC @const5
|
|
PINI 3
|
|
PINI 1
|
|
RETV
|
|
Alt_locl:
|
|
RETV |