Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Input / MouseButton.cs / 1 / MouseButton.cs
using System; using MS.Internal.PresentationCore; namespace System.Windows.Input { ////// The MouseButton enumeration describes the buttons available on /// the mouse device. /// ////// You must update MouseButtonUtilities.Validate if any changes are made to this type /// public enum MouseButton { ////// The left mouse button. /// Left, ////// The middle mouse button. /// Middle, ////// The right mouse button. /// Right, ////// The fourth mouse button. /// XButton1, ////// The fifth mouse button. /// XButton2 } ////// Utility class for MouseButton /// internal sealed class MouseButtonUtilities { ////// Private placeholder constructor /// ////// There is present to supress the autogeneration of a public one, which /// triggers an FxCop violation, as this is an internal class that is never instantiated /// private MouseButtonUtilities() { } ////// Ensures MouseButton is set to a valid value. /// ////// There is a proscription against using Enum.IsDefined(). (it is slow) /// So we manually validate using a switch statement. /// [FriendAccessAllowed] internal static void Validate(MouseButton button) { switch(button) { case MouseButton.Left: case MouseButton.Middle: case MouseButton.Right: case MouseButton.XButton1: case MouseButton.XButton2: break; default: throw new System.ComponentModel.InvalidEnumArgumentException("button", (int)button, typeof(MouseButton)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using MS.Internal.PresentationCore; namespace System.Windows.Input { ////// The MouseButton enumeration describes the buttons available on /// the mouse device. /// ////// You must update MouseButtonUtilities.Validate if any changes are made to this type /// public enum MouseButton { ////// The left mouse button. /// Left, ////// The middle mouse button. /// Middle, ////// The right mouse button. /// Right, ////// The fourth mouse button. /// XButton1, ////// The fifth mouse button. /// XButton2 } ////// Utility class for MouseButton /// internal sealed class MouseButtonUtilities { ////// Private placeholder constructor /// ////// There is present to supress the autogeneration of a public one, which /// triggers an FxCop violation, as this is an internal class that is never instantiated /// private MouseButtonUtilities() { } ////// Ensures MouseButton is set to a valid value. /// ////// There is a proscription against using Enum.IsDefined(). (it is slow) /// So we manually validate using a switch statement. /// [FriendAccessAllowed] internal static void Validate(MouseButton button) { switch(button) { case MouseButton.Left: case MouseButton.Middle: case MouseButton.Right: case MouseButton.XButton1: case MouseButton.XButton2: break; default: throw new System.ComponentModel.InvalidEnumArgumentException("button", (int)button, typeof(MouseButton)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NumberSubstitution.cs
- QueryInterceptorAttribute.cs
- FileClassifier.cs
- PasswordRecovery.cs
- ItemCollection.cs
- ConfigurationManagerInternal.cs
- RoleService.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ContainerParaClient.cs
- ParallelTimeline.cs
- PageSettings.cs
- FormConverter.cs
- DataConnectionHelper.cs
- SchemaDeclBase.cs
- FontUnit.cs
- DbConnectionStringCommon.cs
- KeyNotFoundException.cs
- ToolStripDropDownMenu.cs
- PropertyEmitter.cs
- ServicePointManagerElement.cs
- TypeInfo.cs
- ConfigXmlComment.cs
- DataSourceXmlElementAttribute.cs
- X509RecipientCertificateClientElement.cs
- QilValidationVisitor.cs
- Directory.cs
- RunInstallerAttribute.cs
- assemblycache.cs
- ActivityDesignerHighlighter.cs
- PartialList.cs
- AssemblySettingAttributes.cs
- DataGridViewLinkColumn.cs
- TextRunTypographyProperties.cs
- CharKeyFrameCollection.cs
- ProxySimple.cs
- CategoryAttribute.cs
- MessagePartSpecification.cs
- InfoCardClaimCollection.cs
- CustomAttributeFormatException.cs
- MimeBasePart.cs
- Page.cs
- URL.cs
- ResourceContainer.cs
- ApplicationContext.cs
- WebPartZoneCollection.cs
- TrackBarRenderer.cs
- SamlAttribute.cs
- WindowsStreamSecurityBindingElement.cs
- DriveNotFoundException.cs
- MessageQueueEnumerator.cs
- CalendarAutoFormatDialog.cs
- SqlUserDefinedAggregateAttribute.cs
- SecurityChannelListener.cs
- PlanCompilerUtil.cs
- HttpValueCollection.cs
- RootProjectionNode.cs
- DbModificationClause.cs
- MemoryResponseElement.cs
- Cursors.cs
- ClientData.cs
- UriTemplateTable.cs
- PresentationAppDomainManager.cs
- InstanceLockQueryResult.cs
- TraceUtility.cs
- _ChunkParse.cs
- LogFlushAsyncResult.cs
- ThumbButtonInfo.cs
- MediaContextNotificationWindow.cs
- ApplicationCommands.cs
- DivideByZeroException.cs
- StringReader.cs
- Polyline.cs
- CodeStatement.cs
- DocumentOrderComparer.cs
- LinkDescriptor.cs
- TreeNodeStyleCollection.cs
- ThaiBuddhistCalendar.cs
- TextSpan.cs
- NavigationFailedEventArgs.cs
- ErrorHandler.cs
- ResourceReferenceKeyNotFoundException.cs
- LoaderAllocator.cs
- ColumnHeaderConverter.cs
- BitmapVisualManager.cs
- AttachmentCollection.cs
- KeyboardDevice.cs
- FieldNameLookup.cs
- Schema.cs
- ClientProxyGenerator.cs
- PluralizationServiceUtil.cs
- TextMetrics.cs
- ComponentResourceManager.cs
- DefaultValueAttribute.cs
- URLBuilder.cs
- SafeNativeMethods.cs
- CodeObject.cs
- And.cs
- DefaultTextStore.cs
- MenuItem.cs
- SoapTransportImporter.cs