mirror of
https://github.com/mashed-potatoes/PotatoNV.git
synced 2024-11-10 09:08:03 +01:00
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<Window x:Class="PotatoNV_next.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:PotatoNV_next"
|
|
xmlns:controls="clr-namespace:PotatoNV_next.Controls"
|
|
mc:Ignorable="d"
|
|
Title="PotatoNV Next"
|
|
Height="416"
|
|
Width="720"
|
|
WindowStartupLocation="CenterScreen"
|
|
ResizeMode="NoResize">
|
|
<Window.Resources>
|
|
<Style TargetType="StackPanel">
|
|
<Setter Property="Margin" Value="4" />
|
|
</Style>
|
|
|
|
<Style TargetType="TextBox">
|
|
<Setter Property="FontFamily" Value="Consolas" />
|
|
<Setter Property="MaxLength" Value="16" />
|
|
</Style>
|
|
|
|
<Style TargetType="TextBlock">
|
|
<Setter Property="TextAlignment" Value="Center" />
|
|
<Setter Property="Padding" Value="2" />
|
|
</Style>
|
|
</Window.Resources>
|
|
|
|
<UniformGrid Columns="2">
|
|
<TabControl Margin="3">
|
|
<TabItem Header="NVME Update">
|
|
<controls:NVForm />
|
|
</TabItem>
|
|
<TabItem Header="About program">
|
|
<controls:AboutTab />
|
|
</TabItem>
|
|
</TabControl>
|
|
|
|
<controls:LogBox />
|
|
</UniformGrid>
|
|
</Window>
|