mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
Updated with new decomp tests and results
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,20 @@
|
|||||||
|
<UIX xmlns="http://schemas.microsoft.com/2007/uix"
|
||||||
|
xmlns:me="Me">
|
||||||
|
<Class Name="Styles" Shared="True">
|
||||||
|
<Properties>
|
||||||
|
|
||||||
|
<Color Name="LightOnDarkText" Color="255,255,255" />
|
||||||
|
<Color Name="LightOnDarkAltText" Color="128,255,255,255" />
|
||||||
|
<Color Name="LightOnDarkSubText" Color="179,154,156" />
|
||||||
|
<Color Name="CrazyColor" Color="18,52,86,120" />
|
||||||
|
<Color Name="ZuneMagenta" Color="{Magenta}"/>
|
||||||
|
|
||||||
|
</Properties>
|
||||||
|
</Class>
|
||||||
|
|
||||||
|
<UI Name="Default">
|
||||||
|
<Content>
|
||||||
|
<Panel Background="{me:Styles.ZuneMagenta}"/>
|
||||||
|
</Content>
|
||||||
|
</UI>
|
||||||
|
</UIX>
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
<UIX xmlns="http://schemas.microsoft.com/2007/uix" xmlns:me="Me">
|
||||||
|
<UI Name="Default">
|
||||||
|
<Properties>
|
||||||
|
<InputHandlerTransition Name="HandlerTransition" InputHandlerTransition="Up"/>
|
||||||
|
</Properties>
|
||||||
|
|
||||||
|
<Content>
|
||||||
|
<Panel>
|
||||||
|
<Layout>
|
||||||
|
<FlowLayout Orientation="Vertical" Spacing="50,0" />
|
||||||
|
</Layout>
|
||||||
|
<Children>
|
||||||
|
<Text Name="MainBlock" Color="Red"
|
||||||
|
Content="Howdy from Microsoft.Iris!"/>
|
||||||
|
<me:Alt/>
|
||||||
|
</Children>
|
||||||
|
</Panel>
|
||||||
|
</Content>
|
||||||
|
|
||||||
|
<Input>
|
||||||
|
<ClickHandler Name="Clicker" ClickType="LeftMouse, Key" HandlerStage="Direct, Bubbled"
|
||||||
|
HandlerTransition="{HandlerTransition}" Handle="false"/>
|
||||||
|
</Input>
|
||||||
|
|
||||||
|
<Scripts>
|
||||||
|
<Script>
|
||||||
|
[DeclareTrigger(Clicker.Invoked)]
|
||||||
|
|
||||||
|
MainBlock.Content = "Clicked";
|
||||||
|
</Script>
|
||||||
|
</Scripts>
|
||||||
|
</UI>
|
||||||
|
|
||||||
|
<UI Name="Alt">
|
||||||
|
<Content>
|
||||||
|
<Text Color="Blue" Font="JetBrains Mono">
|
||||||
|
<Content>This is some blue text</Content>
|
||||||
|
</Text>
|
||||||
|
</Content>
|
||||||
|
</UI>
|
||||||
|
</UIX>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<UIX xmlns="http://schemas.microsoft.com/2007/uix">
|
<UIX xmlns="http://schemas.microsoft.com/2007/uix" xmlns:me="Me">
|
||||||
<UI Name="Default">
|
<UI Name="Default">
|
||||||
<Locals>
|
<Locals>
|
||||||
<Font FontSize="10" AltFontSize="10" FontName="Bahnschrift" Name="SmallFont" />
|
<Font FontSize="10" AltFontSize="10" FontName="Bahnschrift" Name="SmallFont" />
|
||||||
@@ -14,9 +14,9 @@
|
|||||||
</FlowLayout>
|
</FlowLayout>
|
||||||
</Layout>
|
</Layout>
|
||||||
<Children>
|
<Children>
|
||||||
<Host Name="TextSettings" />
|
<me:TextSettings />
|
||||||
<Host Name="UsingMargins" />
|
<me:UsingMargins />
|
||||||
<Host Name="UsingColorfillWithText" />
|
<me:UsingColorfillWithText />
|
||||||
</Children>
|
</Children>
|
||||||
</Panel>
|
</Panel>
|
||||||
</Content>
|
</Content>
|
||||||
|
|||||||
Reference in New Issue
Block a user