Desktop10.X有多個版本,不一樣版本的註冊表路徑不一致,註冊表中可能殘留多個版本的註冊信息;也可能沒有Desktop,而是Engine。其實能夠經過RuntimeManager.ActiveRuntime的屬性開判斷版本、產品類型、甚至安裝路徑等。blog
/// <summary> /// 修改滾輪方向 /// </summary> /// <param name="flag">0:向前表示放大(常規習慣);1:向前表示縮小</param> public static void ModifyWheel(int flag = 0) { string path = @"Software\ESRI\" + RuntimeManager.ActiveRuntime.Product + RuntimeManager.ActiveRuntime.Version + @"\ArcMap\Settings" ; RegistryKey setKey = Registry.CurrentUser.OpenSubKey(path, true) ?? Registry.CurrentUser.CreateSubKey(path); setKey?.SetValue("ReverseMouseWheel", flag, RegistryValueKind.DWord); }
若是綁定ProductCode.Engine許可,路徑爲\Software\ESRI\Engine10.2\ArcMap\Settings;若是綁定ProductCode.Desktop許可,路徑爲\Software\ESRI\ Desktop10.2\ArcMap\Settingsstring