20 lines
556 B
C#
20 lines
556 B
C#
using Autodesk.Revit.Attributes;
|
|
using Autodesk.Revit.DB;
|
|
|
|
using Nice3point.Revit.Toolkit.External;
|
|
|
|
using ShrlAlgo.Toolkit.Core.Assist;
|
|
using ShrlAlgoToolkit.Core.Assist;
|
|
|
|
namespace ShrlAlgo.RvKits.ModelManager;
|
|
[Transaction(TransactionMode.Manual)]
|
|
[Regeneration(RegenerationOption.Manual)]
|
|
public class SeparateModelCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
//var win = new SeparateModelWin();
|
|
//win.Show();
|
|
SingletonChildWindowManager.ShowOrActivate<SeparateModelWin, SeparateModelViewModel>();
|
|
}
|
|
} |