FModel/FModel/Views/CustomDir.xaml.cs
2023-06-18 02:34:54 +02:00

24 lines
438 B
C#

using System.Windows;
using FModel.Settings;
namespace FModel.Views;
public partial class CustomDir
{
public CustomDir(CustomDirectory customDir)
{
DataContext = customDir;
InitializeComponent();
Activate();
WpfSuckMyDick.Focus();
WpfSuckMyDick.SelectAll();
}
private void OnClick(object sender, RoutedEventArgs e)
{
DialogResult = true;
Close();
}
}