mirror of https://github.com/AMT-Cheif/Stylet.git
17 lines
786 B
XML
17 lines
786 B
XML
<Window x:Class="Company.StyletApplication1.Pages.ShellView"
|
|
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:s="https://github.com/canton7/Stylet"
|
|
xmlns:local="clr-namespace:Company.StyletApplication1.Pages"
|
|
mc:Ignorable="d"
|
|
d:DataContext="{d:DesignInstance local:ShellViewModel}"
|
|
Title="Stylet Project" Height="450" Width="800">
|
|
<Grid>
|
|
<TextBlock FontSize="30" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
Hello Stylet!
|
|
</TextBlock>
|
|
</Grid>
|
|
</Window>
|