mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
21 lines
No EOL
1 KiB
XML
21 lines
No EOL
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:l="using:Mesen.Localization"
|
|
xmlns:c="using:Mesen.Controls"
|
|
mc:Ignorable="d"
|
|
x:Name="root"
|
|
x:Class="Mesen.Controls.SystemSpecificSettings"
|
|
HorizontalAlignment="Left"
|
|
>
|
|
<c:OptionSection Header="{l:Translate lblSystemSpecificSettings}" Margin="0">
|
|
<StackPanel Orientation="Horizontal">
|
|
<c:ButtonWithIcon Icon="Assets/NesIcon.png" Text="{l:Translate lblNes}" MinWidth="90" Click="OnClickNes" />
|
|
<c:ButtonWithIcon Icon="Assets/SnesIcon.png" Text="{l:Translate lblSnes}" MinWidth="90" Click="OnClickSnes" />
|
|
<c:ButtonWithIcon Icon="Assets/GameboyIcon.png" Text="{l:Translate lblGameboy}" MinWidth="90" Click="OnClickGameboy" />
|
|
<c:ButtonWithIcon Icon="Assets/PceIcon.png" Text="{l:Translate lblPcEngine}" MinWidth="90" Click="OnClickPcEngine" />
|
|
</StackPanel>
|
|
</c:OptionSection>
|
|
</UserControl> |