27 lines
603 B
C#
27 lines
603 B
C#
namespace Utils.Basis.Controls
|
|
{
|
|
using System.CodeDom.Compiler;
|
|
using System.ComponentModel;
|
|
using System.Windows;
|
|
|
|
[GeneratedCode("PresentationBuildTasks", "4.0.0.0")]
|
|
public partial class ProgressWindow
|
|
{
|
|
public ProgressWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Button_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
base.Close();
|
|
}
|
|
|
|
private void Window_Closing(object sender, CancelEventArgs e)
|
|
{
|
|
this.IsOpen = false;
|
|
}
|
|
|
|
public bool IsOpen = true;
|
|
}
|
|
} |