20 lines
558 B
C#
20 lines
558 B
C#
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;
|
|
}
|
|
}
|
|
}
|