UserPreferenceChangedEventArgs
Provides data for the  UserPreferenceChanged event.
                using System;
namespace Microsoft.Win32
{
    public class UserPreferenceChangedEventArgs : EventArgs
    {
        public UserPreferenceCategory Category {
            get {
                throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemEvents);
            }
        }
        public UserPreferenceChangedEventArgs(UserPreferenceCategory category)
        {
            throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemEvents);
        }
    }
}