2025-04-24 20:56:44 +08:00
|
|
|
|
using System.Windows;
|
2024-09-22 11:05:41 +08:00
|
|
|
|
|
2025-04-24 20:56:44 +08:00
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.Windows
|
2024-09-22 11:05:41 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interaction logic for ProgressMonitorView.xaml
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class ProgressMonitorView : Window
|
|
|
|
|
|
{
|
|
|
|
|
|
public ProgressMonitorView()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
|
|
//private static ProgressMonitorView instance;
|
|
|
|
|
|
|
|
|
|
|
|
//public static ProgressMonitorView Instance
|
|
|
|
|
|
//{
|
|
|
|
|
|
// get
|
|
|
|
|
|
// {
|
|
|
|
|
|
// instance ??= new ProgressMonitorView();
|
|
|
|
|
|
// return instance;
|
|
|
|
|
|
// }
|
|
|
|
|
|
//}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|