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