Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / UICuesEvent.cs / 1305376 / 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.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BaseWebProxyFinder.cs
- UnsafeNativeMethods.cs
- XamlSerializerUtil.cs
- OutputCacheProfileCollection.cs
- ConnectionConsumerAttribute.cs
- Base64Encoder.cs
- DictationGrammar.cs
- MultiView.cs
- EventData.cs
- EventEntry.cs
- SymbolEqualComparer.cs
- Token.cs
- XhtmlBasicSelectionListAdapter.cs
- EdmItemCollection.cs
- SmtpException.cs
- ScriptResourceMapping.cs
- InternalsVisibleToAttribute.cs
- HandlerFactoryCache.cs
- SqlTriggerAttribute.cs
- WindowsSpinner.cs
- EpmSourcePathSegment.cs
- StackOverflowException.cs
- PropertyPathWorker.cs
- LinkDescriptor.cs
- BackgroundWorker.cs
- PersonalizationAdministration.cs
- TextAutomationPeer.cs
- BinaryFormatter.cs
- ApplicationInterop.cs
- VirtualPathUtility.cs
- ErrorTableItemStyle.cs
- SourceChangedEventArgs.cs
- EmbeddedMailObject.cs
- HelpKeywordAttribute.cs
- EndpointDiscoveryMetadataCD1.cs
- UnionCodeGroup.cs
- FunctionImportElement.cs
- TypographyProperties.cs
- EmbeddedMailObject.cs
- ComponentChangingEvent.cs
- EnumCodeDomSerializer.cs
- BaseDataListPage.cs
- columnmapkeybuilder.cs
- KeyEventArgs.cs
- AssemblyBuilder.cs
- SortDescriptionCollection.cs
- ConnectionConsumerAttribute.cs
- BatchParser.cs
- RegexCharClass.cs
- ValidationRule.cs
- HttpConfigurationContext.cs
- StrokeCollectionConverter.cs
- PopupRootAutomationPeer.cs
- MenuItemStyleCollection.cs
- ConfigurationManagerInternal.cs
- Utilities.cs
- ControlEvent.cs
- NextPreviousPagerField.cs
- UInt32Converter.cs
- SimpleRecyclingCache.cs
- AutomationIdentifier.cs
- XmlMapping.cs
- ObjectResult.cs
- FunctionParameter.cs
- CodeCompileUnit.cs
- Delay.cs
- VisualStyleRenderer.cs
- DotNetATv1WindowsLogEntrySerializer.cs
- TripleDES.cs
- Point4DValueSerializer.cs
- HttpDebugHandler.cs
- SystemResources.cs
- ForAllOperator.cs
- RecipientIdentity.cs
- DataSourceDescriptorCollection.cs
- AppDomainManager.cs
- DeferredRunTextReference.cs
- ScriptComponentDescriptor.cs
- CryptoApi.cs
- AbsoluteQuery.cs
- ReflectPropertyDescriptor.cs
- Error.cs
- SystemException.cs
- ToggleButtonAutomationPeer.cs
- DateRangeEvent.cs
- TargetInvocationException.cs
- InstanceDataCollection.cs
- WebPartMovingEventArgs.cs
- SimpleMailWebEventProvider.cs
- RegexWorker.cs
- HttpInputStream.cs
- ExpressionBuilderContext.cs
- IPEndPoint.cs
- FormViewUpdateEventArgs.cs
- TypeInitializationException.cs
- PersonalizationProvider.cs
- AttributeSetAction.cs
- ButtonBaseAutomationPeer.cs
- Condition.cs
- MimeObjectFactory.cs