mirror of
https://github.com/4sval/FModel.git
synced 2026-03-29 05:05:33 -05:00
24 lines
438 B
C#
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();
|
|
}
|
|
}
|