0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 05:50:47 -05:00
installer/SPTInstaller/Views/InstallPathSelectionView.axaml.cs

18 lines
432 B
C#
Raw Normal View History

using Avalonia.Controls;
using Avalonia.ReactiveUI;
using SPTInstaller.ViewModels;
namespace SPTInstaller.Views;
public partial class InstallPathSelectionView : ReactiveUserControl<InstallPathSelectionViewModel>
{
public InstallPathSelectionView()
{
InitializeComponent();
}
private void TextBox_OnTextChanged(object? sender, TextChangedEventArgs e)
{
ViewModel?.ValidatePath();
}
}