12345678910111213141516171819202122232425262728293031323334353637 |
- <custom:WaaaghWindow x:Class="Waaagh.Views.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:vm="clr-namespace:Waaagh.ViewModels"
- xmlns:custom="clr-namespace:Waaagh.CustomControl"
- mc:Ignorable="d"
- Icon="C:\Users\L87\Desktop\touhou\琪露诺3.jpg"
- Title="MainWindow" Height="450" Width="800"
- d:DataContext="{d:DesignInstance vm:MainViewModel}" WindowStyle="SingleBorderWindow">
- <!--<custom:WaaaghWindow.TitleBarContent>
- <StackPanel Orientation="Horizontal">
- <Image Source="C:\Users\L87\Desktop\touhou\山城高岭.jpg"/>
- <TextBlock Text="山城高岭"/>
- </StackPanel>
- </custom:WaaaghWindow.TitleBarContent>-->
- <!--<custom:WaaaghWindow.TitleBarButtons>
- <Button Content="A"/>
- </custom:WaaaghWindow.TitleBarButtons>-->
- <Grid ShowGridLines="True">
- <Grid.RowDefinitions>
- <RowDefinition Height="32"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="32"/>
- </Grid.RowDefinitions>
- <Border Grid.Row="1">
- <TextBlock FontSize="32" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center" Text="{Binding Greeting}"/>
- </Border>
- </Grid>
- </custom:WaaaghWindow>
|