mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 15:44:00 +08:00
28 lines
717 B
C#
28 lines
717 B
C#
using System.Collections.Generic;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
|
|
namespace GARbro.GUI
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for EnterMaskDialog.xaml
|
|
/// </summary>
|
|
public partial class EnterMaskDialog : Window
|
|
{
|
|
public EnterMaskDialog (IEnumerable<string> mask_list)
|
|
{
|
|
InitializeComponent ();
|
|
// Mask.ItemsSource = mask_list;
|
|
Mask.Text = "*.*";
|
|
Mask.SelectionStart = 2;
|
|
Mask.SelectionLength = 1;
|
|
FocusManager.SetFocusedElement (this, Mask);
|
|
}
|
|
|
|
private void Button_Click (object sender, RoutedEventArgs e)
|
|
{
|
|
this.DialogResult = true;
|
|
}
|
|
}
|
|
}
|