添加项目文件。
This commit is contained in:
25
Szmedi.RvKits/Common/ReleaseNotesCmd.cs
Normal file
25
Szmedi.RvKits/Common/ReleaseNotesCmd.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
using Autodesk.Revit.Attributes;
|
||||
|
||||
using Autodesk.Revit.DB;
|
||||
|
||||
using Nice3point.Revit.Toolkit.External;
|
||||
|
||||
using System;
|
||||
|
||||
namespace Szmedi.RvKits.Common
|
||||
{
|
||||
/// <summary>
|
||||
/// Revit执行命令
|
||||
/// </summary>
|
||||
[Transaction(TransactionMode.Manual)]
|
||||
|
||||
public class ReleaseNotesCmd : ExternalCommand
|
||||
{
|
||||
public override void Execute()
|
||||
{
|
||||
new ReleaseNoteWin().ShowDialog();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user