mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
15 lines
869 B
XML
15 lines
869 B
XML
<UserControl x:Class="NandReaderGui.View.Nand"
|
|
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"
|
|
DataContext="{Binding Main, Source={StaticResource Locator}}"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<StackPanel Orientation="Vertical">
|
|
<ListBox ItemsSource="{Binding Disks}" DisplayMemberPath="Display" Height="150" SelectedItem="{Binding SelectedDisk}"/>
|
|
<Button Content="Open" Width="100" HorizontalAlignment="Left" Command="{Binding OpenCommand}"></Button>
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|