20 lines
462 B
C#
20 lines
462 B
C#
using Autodesk.Revit.Attributes;
|
|
|
|
using Nice3point.Revit.Toolkit.External;
|
|
|
|
using ShrlAlgo.Toolkit.Core.Heplers;
|
|
|
|
using System.Windows;
|
|
|
|
namespace ShrlAlgo.RvKits.RvFamily;
|
|
|
|
[Transaction(TransactionMode.Manual)]
|
|
[Regeneration(RegenerationOption.Manual)]
|
|
public class FamilyProcessorCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
WinDialogHelper.ShowModeless<FamilyProcessorView>(new FamilyProcessorViewModel(UiApplication));
|
|
}
|
|
}
|