2023-01-15 12:11:52 +01:00
|
|
|
<UserControl
|
2022-12-29 15:24:05 +01:00
|
|
|
x:Class="Ryujinx.Ava.UI.Windows.TitleUpdateWindow"
|
2022-07-08 20:47:11 +02:00
|
|
|
xmlns="https://github.com/avaloniaui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:locale="clr-namespace:Ryujinx.Ava.Common.Locale"
|
2022-11-25 17:55:08 +01:00
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2023-01-15 12:11:52 +01:00
|
|
|
xmlns:viewModels="clr-namespace:Ryujinx.Ava.UI.ViewModels"
|
|
|
|
xmlns:models="clr-namespace:Ryujinx.Ava.UI.Models"
|
|
|
|
xmlns:ui="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia"
|
|
|
|
Width="500"
|
|
|
|
Height="300"
|
2022-12-05 23:04:18 +01:00
|
|
|
mc:Ignorable="d"
|
2023-01-15 12:11:52 +01:00
|
|
|
x:CompileBindings="True"
|
|
|
|
x:DataType="viewModels:TitleUpdateViewModel"
|
2022-12-05 23:04:18 +01:00
|
|
|
Focusable="True">
|
2023-01-15 12:11:52 +01:00
|
|
|
<Grid>
|
2022-07-08 20:47:11 +02:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border
|
2023-01-15 12:11:52 +01:00
|
|
|
Grid.Row="0"
|
|
|
|
Margin="0 0 0 24"
|
2022-07-08 20:47:11 +02:00
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
VerticalAlignment="Stretch"
|
2023-01-15 12:11:52 +01:00
|
|
|
BorderBrush="{DynamicResource AppListHoverBackgroundColor}"
|
|
|
|
BorderThickness="1"
|
|
|
|
CornerRadius="5"
|
|
|
|
Padding="2.5">
|
|
|
|
<ListBox
|
|
|
|
VirtualizationMode="None"
|
|
|
|
Background="Transparent"
|
|
|
|
SelectedItem="{Binding SelectedUpdate, Mode=TwoWay}"
|
|
|
|
Items="{Binding Views}">
|
|
|
|
<ListBox.DataTemplates>
|
|
|
|
<DataTemplate
|
|
|
|
DataType="models:TitleUpdateModel">
|
|
|
|
<Panel Margin="10">
|
|
|
|
<TextBlock
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
TextWrapping="Wrap"
|
|
|
|
Text="{Binding Label}" />
|
|
|
|
<StackPanel
|
|
|
|
Spacing="10"
|
|
|
|
Orientation="Horizontal"
|
|
|
|
HorizontalAlignment="Right">
|
|
|
|
<Button
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
Padding="10"
|
|
|
|
MinWidth="0"
|
|
|
|
MinHeight="0"
|
|
|
|
Click="OpenLocation">
|
|
|
|
<ui:SymbolIcon
|
|
|
|
Symbol="OpenFolder"
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Center" />
|
|
|
|
</Button>
|
|
|
|
<Button
|
2022-11-25 17:55:08 +01:00
|
|
|
VerticalAlignment="Center"
|
2023-01-15 12:11:52 +01:00
|
|
|
HorizontalAlignment="Right"
|
|
|
|
Padding="10"
|
|
|
|
MinWidth="0"
|
|
|
|
MinHeight="0"
|
|
|
|
Click="RemoveUpdate">
|
|
|
|
<ui:SymbolIcon
|
|
|
|
Symbol="Cancel"
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Center" />
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</Panel>
|
|
|
|
</DataTemplate>
|
|
|
|
<DataTemplate
|
|
|
|
DataType="viewModels:BaseModel">
|
|
|
|
<Panel
|
|
|
|
Height="33"
|
|
|
|
Margin="10">
|
|
|
|
<TextBlock
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
TextWrapping="Wrap"
|
|
|
|
Text="{locale:Locale NoUpdate}" />
|
|
|
|
</Panel>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListBox.DataTemplates>
|
|
|
|
<ListBox.Styles>
|
|
|
|
<Style Selector="ListBoxItem">
|
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
</Style>
|
|
|
|
</ListBox.Styles>
|
|
|
|
</ListBox>
|
2022-07-08 20:47:11 +02:00
|
|
|
</Border>
|
2023-01-15 12:11:52 +01:00
|
|
|
<Panel
|
|
|
|
Grid.Row="1"
|
2022-07-08 20:47:11 +02:00
|
|
|
HorizontalAlignment="Stretch">
|
2023-01-15 12:11:52 +01:00
|
|
|
<StackPanel
|
|
|
|
Orientation="Horizontal"
|
|
|
|
Spacing="10"
|
|
|
|
HorizontalAlignment="Left">
|
2022-07-08 20:47:11 +02:00
|
|
|
<Button
|
|
|
|
Name="AddButton"
|
|
|
|
MinWidth="90"
|
2023-01-15 12:11:52 +01:00
|
|
|
Command="{ReflectionBinding Add}">
|
2022-07-08 20:47:11 +02:00
|
|
|
<TextBlock Text="{locale:Locale SettingsTabGeneralAdd}" />
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
Name="RemoveAllButton"
|
|
|
|
MinWidth="90"
|
2023-01-15 12:11:52 +01:00
|
|
|
Click="RemoveAll">
|
2022-07-08 20:47:11 +02:00
|
|
|
<TextBlock Text="{locale:Locale DlcManagerRemoveAllButton}" />
|
|
|
|
</Button>
|
2023-01-15 12:11:52 +01:00
|
|
|
</StackPanel>
|
|
|
|
<StackPanel
|
|
|
|
Orientation="Horizontal"
|
|
|
|
Spacing="10"
|
|
|
|
HorizontalAlignment="Right">
|
2022-07-08 20:47:11 +02:00
|
|
|
<Button
|
|
|
|
Name="SaveButton"
|
|
|
|
MinWidth="90"
|
2023-01-15 12:11:52 +01:00
|
|
|
Click="Save">
|
2022-07-08 20:47:11 +02:00
|
|
|
<TextBlock Text="{locale:Locale SettingsButtonSave}" />
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
Name="CancelButton"
|
|
|
|
MinWidth="90"
|
2023-01-15 12:11:52 +01:00
|
|
|
Click="Close">
|
2022-07-08 20:47:11 +02:00
|
|
|
<TextBlock Text="{locale:Locale InputDialogCancel}" />
|
|
|
|
</Button>
|
2023-01-15 12:11:52 +01:00
|
|
|
</StackPanel>
|
|
|
|
</Panel>
|
2022-07-08 20:47:11 +02:00
|
|
|
</Grid>
|
2023-01-15 12:11:52 +01:00
|
|
|
</UserControl>
|