添加项目文件。

This commit is contained in:
GG Z
2026-02-28 21:01:57 +08:00
parent 9fe4e5a9aa
commit 7a229067cc
175 changed files with 18060 additions and 0 deletions

32
MSDevTool/commands.xml Normal file
View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8" ?>
<KeyinTree xmlns="http://www.bentley.com/schemas/1.0/MicroStation/AddIn/KeyinTree.xsd">
<!--根键入表-->
<RootKeyinTable ID="root">
<Keyword SubtableRef="Commands" CommandWord="MSDevTool">
<Options Required="true" />
</Keyword>
</RootKeyinTable>
<!--子键入表-->
<SubKeyinTables>
<KeyinTable ID="Commands">
<Keyword SubtableRef="FromCmd" CommandWord="Commands">
<Options Required="true" />
</Keyword>
</KeyinTable>
<KeyinTable ID="FromCmd">
<Keyword CommandWord="Lookup" />
<Keyword CommandWord="Selection" />
</KeyinTable>
</SubKeyinTables>
<!--命令键入完整的对应处理函数-->
<KeyinHandlers>
<KeyinHandler Keyin="MSDevTool Commands Lookup" Function="MSDevTool.Commands.Lookup"/>
<KeyinHandler Keyin="MSDevTool Commands Selection" Function="MSDevTool.Commands.Selection"/>
</KeyinHandlers>
</KeyinTree>