mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
420 B
C#
19 lines
420 B
C#
using Avalonia.Input;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.Settings.Updating;
|
|
|
|
public partial class ReleaseView : ReactiveUserControl<ReleaseViewModel>
|
|
{
|
|
public ReleaseView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
|
|
private void InputElement_OnPointerReleased(object? sender, PointerReleasedEventArgs e)
|
|
{
|
|
ViewModel?.NavigateToSource();
|
|
}
|
|
} |