メッセージ1/7
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- パーマリンクを表示
- 印刷
- 報告
Hello,
I face a problem by netloading a dll for add-in as the only command that works fine is ParcelCreation but other give me Unkown Command Why ? Knowing that by debugging (From VS 2022) all commands Work Fine
public class Commands : IExtensionApplication
{
public void Initialize()
{
}
public void Terminate()
{
}
[CommandMethod("ParcelCreation")]
public void OpenParcelCreationUI()
{
BlocksManager.Create();
}
[CommandMethod("ParcelStyleCreation")]
public void OpenParcelStyleCreationUI()
{
ThemeManager.CreateParcelStyles();
}
[CommandMethod("AssignParcelParamer")]
public void OpenParcelParameterAssignUI()
{
ParameterManager.TransferParameter();
}
[CommandMethod("AssignParcelStyle")]
public void AssignStyleofParcels()
{
ThemeManager.ApplyTheme();
}
}
解決済! 解決策の投稿を見る。