-1
我正在試圖製作一個要求以函數圖形和直方圖的形式輸出的petrel插件。我可以以編程方式命名函數窗口嗎?如何以編程方式更改petrel窗口的名稱
我正在試圖製作一個要求以函數圖形和直方圖的形式輸出的petrel插件。我可以以編程方式命名函數窗口嗎?如何以編程方式更改petrel窗口的名稱
是的,您可以使用INameInfoFactory重命名一個FunctionWindow。
INameInfoFactory nameFactory = (null != funcWindow) ? CoreSystem.GetService<INameInfoFactory>(funcWindow) : null;
var nameInfo = (null != nameFactory) ? nameFactory.GetNameInfo(funcWindow) : null;
if (null != nameInfo && nameInfo.CanChangeName)
{
nameInfo.Name = windowName;
}