メインコンテンツまでスキップ

バージョン番号を取得する

Next Designのバージョン番号を取得するにはIApplicationオブジェクトのVersionプロパティを用います。

public void GetVersion(ICommandContext c, ICommandParams p)
{
var version = c.App.Version;
c.App.Window.UI.ShowMessageBox($"Version {version}", "Sample");
}