initial commit
This commit is contained in:
19
Views/Dialogs/ProgressDialog.xaml.cs
Normal file
19
Views/Dialogs/ProgressDialog.xaml.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Windows;
|
||||
using HC_APTBS.ViewModels.Dialogs;
|
||||
|
||||
namespace HC_APTBS.Views.Dialogs
|
||||
{
|
||||
/// <summary>
|
||||
/// Modal progress dialog shown during long-running K-Line operations.
|
||||
/// Close by calling <see cref="Window.Close"/> from outside (the ViewModel raises
|
||||
/// <see cref="ProgressViewModel"/> events, not this window).
|
||||
/// </summary>
|
||||
public partial class ProgressDialog : Window
|
||||
{
|
||||
public ProgressDialog(ProgressViewModel vm)
|
||||
{
|
||||
InitializeComponent();
|
||||
DataContext = vm;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user