You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.1 KiB
19 lines
1.1 KiB
<Window x:Class="IOTContainer.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:IOTContainer"
|
|
mc:Ignorable="d" d:DesignWidth="500"
|
|
Title="MainWindow" Width="500" ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterScreen" Background="Transparent" AllowsTransparency="True" Closed="Window_Closed">
|
|
<Viewbox>
|
|
<Border Background="#fff" Padding="0 0 0 16" CornerRadius="7">
|
|
<StackPanel>
|
|
<Grid Background="Transparent" Height="44" VerticalAlignment="Top" Width="500" MouseMove="Grid_MouseMove">
|
|
<Button Style="{StaticResource CloseButtonStyle}" Click="CloseWinClick"/>
|
|
</Grid>
|
|
<UserControl Content="{Binding MainUserControl}"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</Viewbox>
|
|
</Window>
|
|
|