Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / UICuesEvent.cs / 1 / UICuesEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { ////// /// [Flags] public enum UICues { ////// Specifies UI state. /// ////// /// Focus rectangles are shown after the change. /// ShowFocus = 0x01, ////// /// Keyboard cues are underlined after the change. /// ShowKeyboard = 0x02, ////// /// Shown = ShowFocus | ShowKeyboard, ///[To be supplied.] ////// /// The state of the focus cues has changed. /// ChangeFocus = 0x04, ////// /// The state of the keyboard cues has changed. /// ChangeKeyboard = 0x08, ////// /// Changed = ChangeFocus | ChangeKeyboard, ///[To be supplied.] ////// /// None = 0x00, } ///[To be supplied.] ////// /// public class UICuesEventArgs : EventArgs { private readonly UICues uicues; ////// Provides data for the ///event. /// /// /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")] public UICuesEventArgs(UICues uicues) { this.uicues = uicues; } ///[To be supplied.] ////// /// Focus rectangles are shown after the change. /// public bool ShowFocus { get { return (uicues & UICues.ShowFocus) != 0; } } ////// /// Keyboard cues are underlined after the change. /// public bool ShowKeyboard { get { return (uicues & UICues.ShowKeyboard) != 0; } } ////// /// The state of the focus cues has changed. /// public bool ChangeFocus { get { return (uicues & UICues.ChangeFocus) != 0; } } ////// /// The state of the keyboard cues has changed. /// public bool ChangeKeyboard { get { return (uicues & UICues.ChangeKeyboard) != 0; } } ////// /// public UICues Changed { get { return (uicues & UICues.Changed); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { ////// /// [Flags] public enum UICues { ////// Specifies UI state. /// ////// /// Focus rectangles are shown after the change. /// ShowFocus = 0x01, ////// /// Keyboard cues are underlined after the change. /// ShowKeyboard = 0x02, ////// /// Shown = ShowFocus | ShowKeyboard, ///[To be supplied.] ////// /// The state of the focus cues has changed. /// ChangeFocus = 0x04, ////// /// The state of the keyboard cues has changed. /// ChangeKeyboard = 0x08, ////// /// Changed = ChangeFocus | ChangeKeyboard, ///[To be supplied.] ////// /// None = 0x00, } ///[To be supplied.] ////// /// public class UICuesEventArgs : EventArgs { private readonly UICues uicues; ////// Provides data for the ///event. /// /// /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")] public UICuesEventArgs(UICues uicues) { this.uicues = uicues; } ///[To be supplied.] ////// /// Focus rectangles are shown after the change. /// public bool ShowFocus { get { return (uicues & UICues.ShowFocus) != 0; } } ////// /// Keyboard cues are underlined after the change. /// public bool ShowKeyboard { get { return (uicues & UICues.ShowKeyboard) != 0; } } ////// /// The state of the focus cues has changed. /// public bool ChangeFocus { get { return (uicues & UICues.ChangeFocus) != 0; } } ////// /// The state of the keyboard cues has changed. /// public bool ChangeKeyboard { get { return (uicues & UICues.ChangeKeyboard) != 0; } } ////// /// public UICues Changed { get { return (uicues & UICues.Changed); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebUtil.cs
- BlurEffect.cs
- GridEntryCollection.cs
- ActivityStatusChangeEventArgs.cs
- HttpServerUtilityBase.cs
- DiscoveryInnerClientManaged11.cs
- CaseExpr.cs
- BookmarkEventArgs.cs
- ResourcesChangeInfo.cs
- EntitySetRetriever.cs
- UriExt.cs
- PingReply.cs
- DataGridViewButtonColumn.cs
- ColorInterpolationModeValidation.cs
- Point.cs
- UserNamePasswordValidator.cs
- TransactionContextValidator.cs
- FixedTextContainer.cs
- SamlNameIdentifierClaimResource.cs
- PageClientProxyGenerator.cs
- ButtonBaseAdapter.cs
- VariableValue.cs
- BufferedWebEventProvider.cs
- WebPartHeaderCloseVerb.cs
- Int32CollectionConverter.cs
- X509ChainPolicy.cs
- DataObjectSettingDataEventArgs.cs
- CurrentChangingEventManager.cs
- ArrangedElement.cs
- SoapInteropTypes.cs
- FunctionCommandText.cs
- IndividualDeviceConfig.cs
- ComNativeDescriptor.cs
- MediaContext.cs
- HtmlControl.cs
- ErrorFormatterPage.cs
- RequestCacheManager.cs
- DPTypeDescriptorContext.cs
- FormsAuthenticationCredentials.cs
- ArrayHelper.cs
- CreateUserErrorEventArgs.cs
- InstanceLockTracking.cs
- TextCharacters.cs
- PeerApplication.cs
- FontWeight.cs
- MessageRpc.cs
- TextElementAutomationPeer.cs
- OdbcConnectionStringbuilder.cs
- CaseInsensitiveComparer.cs
- SystemIPInterfaceProperties.cs
- InputLanguageManager.cs
- DataErrorValidationRule.cs
- MostlySingletonList.cs
- StylusPlugin.cs
- DataSvcMapFileSerializer.cs
- LinkUtilities.cs
- SourceElementsCollection.cs
- XmlSchemaComplexContentExtension.cs
- Soap.cs
- StreamAsIStream.cs
- ConditionalDesigner.cs
- safex509handles.cs
- DataControlLinkButton.cs
- TreeBuilderBamlTranslator.cs
- PartDesigner.cs
- XPathItem.cs
- CodeObject.cs
- EmptyEnumerator.cs
- MetadataPropertyAttribute.cs
- XmlSerializerFactory.cs
- AndCondition.cs
- nulltextcontainer.cs
- PKCS1MaskGenerationMethod.cs
- Table.cs
- ProfileService.cs
- OracleBoolean.cs
- LineProperties.cs
- RelationshipConverter.cs
- TextBoxAutomationPeer.cs
- ScriptResourceMapping.cs
- FileDialog.cs
- NavigationCommands.cs
- XmlTypeMapping.cs
- DBSqlParserTableCollection.cs
- StringKeyFrameCollection.cs
- ListBoxItemWrapperAutomationPeer.cs
- PaperSource.cs
- HttpStreams.cs
- SmtpLoginAuthenticationModule.cs
- CompositeTypefaceMetrics.cs
- OverrideMode.cs
- XmlNodeReader.cs
- Action.cs
- SrgsSemanticInterpretationTag.cs
- ContainerUIElement3D.cs
- CodeExpressionStatement.cs
- AssemblyBuilder.cs
- JsonUriDataContract.cs
- TemplateParser.cs
- ProfileService.cs