31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
|
|
<Window x:Class="SyminViewTest.MainWindow"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:local="clr-namespace:SyminViewTest"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
WindowStartupLocation="CenterScreen"
|
||
|
|
Title="Symin UI" Height="450" Width="400"
|
||
|
|
Style="{StaticResource Window.Normal}"
|
||
|
|
xmlns:sva="clr-namespace:SyminUI.Controls.Attach;assembly=SyminUI"
|
||
|
|
Icon="/Resources/Images/SyminUI.png">
|
||
|
|
<sva:WindowElement.TitleBar>
|
||
|
|
<Menu>
|
||
|
|
<MenuItem Header="Help">
|
||
|
|
<MenuItem Header="About"/>
|
||
|
|
</MenuItem>
|
||
|
|
</Menu>
|
||
|
|
</sva:WindowElement.TitleBar>
|
||
|
|
<StackPanel Margin="4" Orientation="Vertical" >
|
||
|
|
<Button Content="Styles Demo"
|
||
|
|
Click="OpenStyleDemo_Click"/>
|
||
|
|
<Button Content="CSharp UI Demo"
|
||
|
|
Click="OpenCSharpUI_Click"/>
|
||
|
|
<Button Content="Custom Control Test"
|
||
|
|
Click="OpenCustomControlDemo_Click"/>
|
||
|
|
<Button Content="Developing"
|
||
|
|
Click="Developing_Click"/>
|
||
|
|
</StackPanel>
|
||
|
|
</Window>
|