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
- NoneExcludedImageIndexConverter.cs
- CustomAttributeSerializer.cs
- WebPartRestoreVerb.cs
- ConfigXmlElement.cs
- IISUnsafeMethods.cs
- DSASignatureDeformatter.cs
- SR.Designer.cs
- DesignerCategoryAttribute.cs
- TextEditorTables.cs
- WebProxyScriptElement.cs
- OutputScope.cs
- ErrorStyle.cs
- TemplateInstanceAttribute.cs
- MembershipSection.cs
- Single.cs
- HeaderUtility.cs
- BinaryReader.cs
- ShaderEffect.cs
- FamilyMap.cs
- XmlnsCache.cs
- TableLayoutSettings.cs
- WindowProviderWrapper.cs
- ManifestSignatureInformation.cs
- EventProviderWriter.cs
- MimeBasePart.cs
- ListDictionaryInternal.cs
- VolatileResourceManager.cs
- MessageEncodingBindingElement.cs
- ByteBufferPool.cs
- TextDecorationCollection.cs
- IntPtr.cs
- BrowserDefinitionCollection.cs
- FontFamilyIdentifier.cs
- TracingConnectionListener.cs
- TemplateControlBuildProvider.cs
- StreamResourceInfo.cs
- ProviderBase.cs
- TraceLevelStore.cs
- StringHandle.cs
- loginstatus.cs
- AttributeData.cs
- CompilationUtil.cs
- RectValueSerializer.cs
- DnsPermission.cs
- ResourcePool.cs
- SEHException.cs
- XmlExceptionHelper.cs
- NativeMethods.cs
- SqlRewriteScalarSubqueries.cs
- DBSchemaTable.cs
- TokenizerHelper.cs
- JoinTreeSlot.cs
- ModuleElement.cs
- FixedFindEngine.cs
- HMAC.cs
- RegistryDataKey.cs
- StylusPointCollection.cs
- autovalidator.cs
- RelationshipEnd.cs
- IUnknownConstantAttribute.cs
- ProviderBase.cs
- WindowsListViewItemCheckBox.cs
- WebPageTraceListener.cs
- ThemeDictionaryExtension.cs
- ColorTransformHelper.cs
- BufferModesCollection.cs
- BitmapEffectDrawingContent.cs
- StatusStrip.cs
- AuthenticatedStream.cs
- PersonalizationState.cs
- QueryOutputWriter.cs
- SafeUserTokenHandle.cs
- HtmlEncodedRawTextWriter.cs
- PagerSettings.cs
- SqlProvider.cs
- DataBoundControlAdapter.cs
- RelationshipDetailsRow.cs
- KeyTimeConverter.cs
- TypeLoader.cs
- TextFormatter.cs
- AttachmentService.cs
- XmlQueryRuntime.cs
- ColorTypeConverter.cs
- Profiler.cs
- CodeObjectCreateExpression.cs
- PathSegmentCollection.cs
- Timeline.cs
- TCPListener.cs
- AmbientValueAttribute.cs
- LinkedResource.cs
- ClientSettingsStore.cs
- XmlWellformedWriter.cs
- Accessors.cs
- PreservationFileReader.cs
- MessageQueue.cs
- DataControlImageButton.cs
- CoordinationService.cs
- SemaphoreSecurity.cs
- WhiteSpaceTrimStringConverter.cs
- OneWayBindingElement.cs