28 lines
646 B
C#
28 lines
646 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Windows;
|
|
|
|
namespace Szmedi.RevitToolkit.Approval.Controls.ProgressWrapper
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for ProgressMonitorView.xaml
|
|
/// </summary>
|
|
public partial class ProgressMonitorView
|
|
{
|
|
public ProgressMonitorView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
//private static ProgressMonitorView instance;
|
|
|
|
//public static ProgressMonitorView Instance
|
|
//{
|
|
// get
|
|
// {
|
|
// instance ??= new ProgressMonitorView();
|
|
// return instance;
|
|
// }
|
|
//}
|
|
}
|
|
}
|