this.治疗完毕

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
//设置可视化效果,参数value设为4即可
        public void SetCurrentEffectPreset(int value)
        {
            WindowsIdentity identiry = WindowsIdentity.GetCurrent();
            String path = String.Format(@"{0}\Software\Microsoft\MediaPlayer\Preferences", identiry.User.Value);
            RegistryKey key = Registry.Users.OpenSubKey(path, true);
            if (key != null)
            {
                key.SetValue("CurrentEffectPreset", value, RegistryValueKind.DWord);
            }
        }

 

posted on 2018-06-05 18:13  this.治疗完毕  阅读(199)  评论(0)    收藏  举报