mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
32 lines
775 B
Plaintext
32 lines
775 B
Plaintext
<UIX xmlns="http://schemas.microsoft.com/2007/uix"
|
|
xmlns:iris="assembly://UIX/Microsoft.Iris">
|
|
<UI Name="Default">
|
|
<Locals>
|
|
<iris:Command Name="SelectCommand"/>
|
|
</Locals>
|
|
<Content>
|
|
<Text Color="Red">
|
|
<Content>Howdy from Microsoft.Iris!</Content>
|
|
</Text>
|
|
</Content>
|
|
|
|
<Scripts>
|
|
<Script>
|
|
int x = 5;
|
|
|
|
if (x < 10)
|
|
{
|
|
x = x + 1;
|
|
}
|
|
else if (x < 20)
|
|
{
|
|
x = x + 2;
|
|
}
|
|
else
|
|
{
|
|
x = x + 3;
|
|
}
|
|
</Script>
|
|
</Scripts>
|
|
</UI>
|
|
</UIX> |