mirror of
https://github.com/mashed-potatoes/PotatoNV.git
synced 2024-11-12 18:04:14 +01:00
23 lines
1.2 KiB
XML
23 lines
1.2 KiB
XML
<UserControl x:Class="PotatoNV_next.Controls.NVForm"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d"
|
|
IsEnabledChanged="NVForm_IsEnabledChanged">
|
|
<StackPanel Style="{x:Null}">
|
|
<StackPanel>
|
|
<Label Content="Target device" />
|
|
<ComboBox Name="deviceList" SelectionChanged="DeviceList_SelectionChanged" />
|
|
</StackPanel>
|
|
<StackPanel>
|
|
<Label Content="Bootloader" />
|
|
<ComboBox Name="deviceBootloader" />
|
|
</StackPanel>
|
|
<StackPanel>
|
|
<CheckBox x:Name="disableFBLOCK" Content="Disable FBLOCK (not recommended)" IsChecked="False" />
|
|
<CheckBox x:Name="reboot" Content="Reboot after unlock" IsChecked="True" />
|
|
<Button x:Name="startButton" Content="Start!" Height="40" Margin="0,10,0,0" Click="StartButton_Click" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</UserControl>
|