当应用启动过程中读取并设置完全局参数后触发该事件
命名空间:
SuperMap.Desktop程序集: SuperMap.Desktop.Core (in SuperMap.Desktop.Core)
版本: dll
语法
C# |
---|
public event EventHandler InitializedGlobalParameter |
示例
以下代码示范InitializedGlobalParameter事件使用方法。
CopyC#
// InitializedGlobalParameter事件示例 void TestCode() { //首先在您需要处理全局参数类的地方注册该事件 Application.ActiveApplication.InitializedGlobalParameter += new EventHandler(ActiveApplication_InitializedGlobalParameter); } void ActiveApplication_InitializedGlobalParameter(object sender, EventArgs e) { //应用在启动过程中全局化参数实例化完成后触发该事件,此时全局化参数并未在应用中生效 //您可在此时修改全局化参数的默认值 //例如修改GlobalParameters.DisplayStartTab为false,应用启动时不再显示起始页 GlobalParameters.DisplayStartTab = false; }