mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
41 lines
937 B
Plaintext
41 lines
937 B
Plaintext
<UIX xmlns="http://schemas.microsoft.com/2007/uix"
|
|
xmlns:iris="assembly://UIX/Microsoft.Iris">
|
|
<UI Name="Default">
|
|
<Locals>
|
|
|
|
<iris:ArrayListDataSet Name="ArraySet">
|
|
<Source>
|
|
<Int32 Int32="10"/>
|
|
<Int32 Int32="20"/>
|
|
<Int32 Int32="30"/>
|
|
</Source>
|
|
</iris:ArrayListDataSet>
|
|
</Locals>
|
|
|
|
<Content>
|
|
<Text Color="Red">
|
|
<Content>Howdy from Microsoft.Iris!</Content>
|
|
</Text>
|
|
</Content>
|
|
|
|
<Scripts>
|
|
<Script><![CDATA[
|
|
int sum = 0;
|
|
|
|
foreach (Int32 num in ArraySet)
|
|
{
|
|
int y = num;
|
|
|
|
if (y % 4 == 0)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
sum = sum + y;
|
|
}
|
|
|
|
int x = sum * 5;
|
|
]]></Script>
|
|
</Scripts>
|
|
</UI>
|
|
</UIX> |