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">
|
||||
<Locals>
|
||||
<Font FontSize="10" AltFontSize="10" FontName="Bahnschrift" Name="SmallFont" />
|
||||
@@ -14,9 +14,9 @@
|
||||
</FlowLayout>
|
||||
</Layout>
|
||||
<Children>
|
||||
<Host Name="TextSettings" />
|
||||
<Host Name="UsingMargins" />
|
||||
<Host Name="UsingColorfillWithText" />
|
||||
<me:TextSettings />
|
||||
<me:UsingMargins />
|
||||
<me:UsingColorfillWithText />
|
||||
</Children>
|
||||
</Panel>
|
||||
</Content>
|
||||
|
||||
Reference in New Issue
Block a user