Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / OSFeature.cs / 1 / OSFeature.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Configuration.Assemblies;
using System.Diagnostics;
using System;
using System.Security;
using System.Security.Permissions;
///
///
/// Provides operating-system specific feature queries.
///
public class OSFeature : FeatureSupport {
///
///
/// Represents the layered, top-level windows feature. This
/// field is read-only.
///
public static readonly object LayeredWindows = new object();
///
///
/// Determines if the OS supports themes
///
public static readonly object Themes = new object();
private static OSFeature feature = null;
private static bool themeSupportTested = false;
private static bool themeSupport = false;
///
///
///
///
/// Initializes a new instance of the class.
///
///
///
protected OSFeature() {
}
///
///
/// Represents the instance of to use for feature queries. This property is read-only.
///
public static OSFeature Feature {
get {
if (feature == null)
feature = new OSFeature();
return feature;
}
}
///
///
/// Retrieves the version of the specified feature currently available on the system.
///
public override Version GetVersionPresent(object feature) {
Version featureVersion = null;
if (feature == LayeredWindows) {
if (Environment.OSVersion.Platform == System.PlatformID.Win32NT
&& Environment.OSVersion.Version.CompareTo(new Version(5, 0, 0, 0)) >= 0) {
featureVersion = new Version(0, 0, 0, 0);
}
}
else if (feature == Themes) {
if (!themeSupportTested) {
try {
SafeNativeMethods.IsAppThemed();
themeSupport = true;
}
catch {
themeSupport = false;
}
themeSupportTested = true;
}
if (themeSupport) {
featureVersion = new Version(0, 0, 0, 0);
}
}
return featureVersion;
}
internal bool OnXp {
get {
bool onXp = false;
if (Environment.OSVersion.Platform == System.PlatformID.Win32NT) {
onXp = Environment.OSVersion.Version.CompareTo(new Version(5, 1, 0, 0)) >= 0;
}
return onXp;
}
}
internal bool OnWin2k {
get {
bool onWin2k = false;
if (Environment.OSVersion.Platform == System.PlatformID.Win32NT) {
onWin2k = Environment.OSVersion.Version.CompareTo(new Version(5, 0, 0, 0)) >= 0;
}
return onWin2k;
}
}
///
///
/// Retrieves whether SystemParameterType is supported on the Current OS version.
///
public static bool IsPresent(SystemParameter enumVal) {
switch (enumVal) {
case SystemParameter.DropShadow:
return Feature.OnXp;
case SystemParameter.FlatMenu:
return Feature.OnXp;
case SystemParameter.FontSmoothingContrastMetric:
return Feature.OnXp;
case SystemParameter.FontSmoothingTypeMetric:
return Feature.OnXp;
case SystemParameter.MenuFadeEnabled:
return Feature.OnWin2k;
case SystemParameter.SelectionFade:
return Feature.OnWin2k;
case SystemParameter.ToolTipAnimationMetric:
return Feature.OnWin2k;
case SystemParameter.UIEffects:
return Feature.OnWin2k;
case SystemParameter.CaretWidthMetric:
return Feature.OnWin2k;
case SystemParameter.VerticalFocusThicknessMetric:
return Feature.OnXp;
case SystemParameter.HorizontalFocusThicknessMetric:
return Feature.OnXp;
}
return false;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Configuration.Assemblies;
using System.Diagnostics;
using System;
using System.Security;
using System.Security.Permissions;
///
///
/// Provides operating-system specific feature queries.
///
public class OSFeature : FeatureSupport {
///
///
/// Represents the layered, top-level windows feature. This
/// field is read-only.
///
public static readonly object LayeredWindows = new object();
///
///
/// Determines if the OS supports themes
///
public static readonly object Themes = new object();
private static OSFeature feature = null;
private static bool themeSupportTested = false;
private static bool themeSupport = false;
///
///
///
///
/// Initializes a new instance of the class.
///
///
///
protected OSFeature() {
}
///
///
/// Represents the instance of to use for feature queries. This property is read-only.
///
public static OSFeature Feature {
get {
if (feature == null)
feature = new OSFeature();
return feature;
}
}
///
///
/// Retrieves the version of the specified feature currently available on the system.
///
public override Version GetVersionPresent(object feature) {
Version featureVersion = null;
if (feature == LayeredWindows) {
if (Environment.OSVersion.Platform == System.PlatformID.Win32NT
&& Environment.OSVersion.Version.CompareTo(new Version(5, 0, 0, 0)) >= 0) {
featureVersion = new Version(0, 0, 0, 0);
}
}
else if (feature == Themes) {
if (!themeSupportTested) {
try {
SafeNativeMethods.IsAppThemed();
themeSupport = true;
}
catch {
themeSupport = false;
}
themeSupportTested = true;
}
if (themeSupport) {
featureVersion = new Version(0, 0, 0, 0);
}
}
return featureVersion;
}
internal bool OnXp {
get {
bool onXp = false;
if (Environment.OSVersion.Platform == System.PlatformID.Win32NT) {
onXp = Environment.OSVersion.Version.CompareTo(new Version(5, 1, 0, 0)) >= 0;
}
return onXp;
}
}
internal bool OnWin2k {
get {
bool onWin2k = false;
if (Environment.OSVersion.Platform == System.PlatformID.Win32NT) {
onWin2k = Environment.OSVersion.Version.CompareTo(new Version(5, 0, 0, 0)) >= 0;
}
return onWin2k;
}
}
///
///
/// Retrieves whether SystemParameterType is supported on the Current OS version.
///
public static bool IsPresent(SystemParameter enumVal) {
switch (enumVal) {
case SystemParameter.DropShadow:
return Feature.OnXp;
case SystemParameter.FlatMenu:
return Feature.OnXp;
case SystemParameter.FontSmoothingContrastMetric:
return Feature.OnXp;
case SystemParameter.FontSmoothingTypeMetric:
return Feature.OnXp;
case SystemParameter.MenuFadeEnabled:
return Feature.OnWin2k;
case SystemParameter.SelectionFade:
return Feature.OnWin2k;
case SystemParameter.ToolTipAnimationMetric:
return Feature.OnWin2k;
case SystemParameter.UIEffects:
return Feature.OnWin2k;
case SystemParameter.CaretWidthMetric:
return Feature.OnWin2k;
case SystemParameter.VerticalFocusThicknessMetric:
return Feature.OnXp;
case SystemParameter.HorizontalFocusThicknessMetric:
return Feature.OnXp;
}
return false;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlNotificationEventArgs.cs
- EventLogTraceListener.cs
- ResourceDisplayNameAttribute.cs
- HtmlHistory.cs
- ContentControl.cs
- TokenBasedSet.cs
- VectorConverter.cs
- TraversalRequest.cs
- CatalogZone.cs
- FixedSOMElement.cs
- DateTimeFormatInfo.cs
- webproxy.cs
- TabControl.cs
- FontFamily.cs
- GridLengthConverter.cs
- SqlBinder.cs
- EdmScalarPropertyAttribute.cs
- CodeSnippetTypeMember.cs
- SelectorAutomationPeer.cs
- SimpleType.cs
- PointAnimationClockResource.cs
- SingleAnimationUsingKeyFrames.cs
- CacheRequest.cs
- Vector3DCollection.cs
- TextBoxView.cs
- ReferentialConstraintRoleElement.cs
- HttpBrowserCapabilitiesWrapper.cs
- _ConnectOverlappedAsyncResult.cs
- SocketPermission.cs
- Mutex.cs
- TaskResultSetter.cs
- MarkupCompilePass1.cs
- WmiEventSink.cs
- ToolstripProfessionalRenderer.cs
- QilXmlWriter.cs
- ChangeProcessor.cs
- ObjectContextServiceProvider.cs
- COM2TypeInfoProcessor.cs
- InputMethodStateChangeEventArgs.cs
- MarkupExtensionParser.cs
- ConnectionConsumerAttribute.cs
- XmlCharType.cs
- BinaryConverter.cs
- SqlCharStream.cs
- HttpResponseWrapper.cs
- IgnoreDataMemberAttribute.cs
- UpdateTranslator.cs
- QueryCacheKey.cs
- MouseWheelEventArgs.cs
- ConfigXmlElement.cs
- ConfigurationSectionCollection.cs
- EnumDataContract.cs
- EventSetterHandlerConverter.cs
- ellipse.cs
- BitmapCodecInfoInternal.cs
- ResXResourceReader.cs
- SplineQuaternionKeyFrame.cs
- RSAPKCS1SignatureDeformatter.cs
- Variant.cs
- TextParagraphView.cs
- SinglePageViewer.cs
- HandoffBehavior.cs
- Typeface.cs
- InstanceData.cs
- XmlSchemas.cs
- ExtensionDataReader.cs
- DispatcherObject.cs
- DbException.cs
- HighlightVisual.cs
- EntityConnectionStringBuilder.cs
- ScheduleChanges.cs
- TableRowGroup.cs
- DataRecordInternal.cs
- SingleAnimationBase.cs
- BuildProviderUtils.cs
- RootProfilePropertySettingsCollection.cs
- FontEmbeddingManager.cs
- ReturnEventArgs.cs
- ZipIORawDataFileBlock.cs
- DrawingVisual.cs
- RayMeshGeometry3DHitTestResult.cs
- SafeFileHandle.cs
- ResponseBodyWriter.cs
- SoundPlayerAction.cs
- DataBinder.cs
- WsrmTraceRecord.cs
- DataGridViewComboBoxEditingControl.cs
- PageParser.cs
- DataGridRowEventArgs.cs
- CalculatedColumn.cs
- EmulateRecognizeCompletedEventArgs.cs
- OpacityConverter.cs
- Visual3DCollection.cs
- DesigntimeLicenseContext.cs
- StorageConditionPropertyMapping.cs
- HttpResponseInternalWrapper.cs
- LinearKeyFrames.cs
- DynamicDataRouteHandler.cs
- PropertyGroupDescription.cs
- SendingRequestEventArgs.cs