2023-01-08 18:46:25 +01:00
|
|
|
|
using Avalonia;
|
|
|
|
|
using Avalonia.Controls;
|
|
|
|
|
using Avalonia.Input;
|
|
|
|
|
using Avalonia.Interactivity;
|
|
|
|
|
using Ryujinx.Ava.Common;
|
|
|
|
|
using Ryujinx.Ava.UI.ViewModels;
|
|
|
|
|
using Ryujinx.Ava.UI.Windows;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Ava.UI.Views.Main
|
|
|
|
|
{
|
|
|
|
|
public partial class MainViewControls : UserControl
|
|
|
|
|
{
|
|
|
|
|
public MainWindowViewModel ViewModel;
|
|
|
|
|
|
|
|
|
|
public MainViewControls()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnAttachedToVisualTree(VisualTreeAttachmentEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnAttachedToVisualTree(e);
|
|
|
|
|
|
2023-01-09 04:37:20 +01:00
|
|
|
|
if (VisualRoot is MainWindow window)
|
2023-01-08 18:46:25 +01:00
|
|
|
|
{
|
|
|
|
|
ViewModel = window.ViewModel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DataContext = ViewModel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Sort_Checked(object sender, RoutedEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
if (sender is RadioButton button)
|
|
|
|
|
{
|
|
|
|
|
ViewModel.Sort(Enum.Parse<ApplicationSort>(button.Tag.ToString()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Order_Checked(object sender, RoutedEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
if (sender is RadioButton button)
|
|
|
|
|
{
|
|
|
|
|
ViewModel.Sort(button.Tag.ToString() != "Descending");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SearchBox_OnKeyUp(object sender, KeyEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
ViewModel.SearchText = SearchBox.Text;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|