-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputDialog.xaml.cs
More file actions
39 lines (33 loc) · 950 Bytes
/
Copy pathInputDialog.xaml.cs
File metadata and controls
39 lines (33 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Windows;
using System.Windows.Controls;
namespace TgFillers
{
/// <summary>
/// Interaction logic for addFiller.xaml
/// </summary>
public partial class InputDialog : Window
{
//private bool DialogResult;
public InputDialog(string question,bool useProgressbar = false)
{
InitializeComponent();
lblQuestion.Content = question;
txtAnswer.Text = "";
pbAddPack.Visibility = useProgressbar?Visibility.Visible:Visibility.Hidden;
}
private void btnDialogOk_Click(object sender, RoutedEventArgs e)
{
this.DialogResult = true;
}
private void Window_ContentRendered(object sender, EventArgs e)
{
txtAnswer.SelectAll();
txtAnswer.Focus();
}
public string Answer
{
get { return txtAnswer.Text; }
}
}
}