mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-21 14:11:59 +00:00
22 lines
1.1 KiB
XML
22 lines
1.1 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
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:pages="clr-namespace:Ryujinx.Ava.UI.SetupWizard.Pages"
|
|
xmlns:markup="clr-namespace:Ryujinx.Ava.Common.Markup"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Ryujinx.Ava.UI.SetupWizard.Pages.SetupKeysPage"
|
|
x:DataType="pages:SetupKeysPageViewModel">
|
|
<StackPanel>
|
|
<TextBlock Text="{markup:Locale SetupWizardKeysPageDescription}" Margin="0,0,0,10"/>
|
|
<Grid ColumnDefinitions="*,Auto">
|
|
<TextBox Name="KeysFolderPathField" Text="{Binding KeysFolderPath}" IsReadOnly="True" />
|
|
<Button Grid.Column="1"
|
|
Content="..."
|
|
Command="{Binding BrowseCommand}"
|
|
CommandParameter="{Binding #KeysFolderPathField}"
|
|
Margin="5,0,0,0"/>
|
|
</Grid>
|
|
</StackPanel>
|
|
</UserControl>
|
|
|