Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AdornerHitTestResult.cs
- DesignerCommandAdapter.cs
- AssemblyResourceLoader.cs
- ThreadInterruptedException.cs
- XPathDocumentIterator.cs
- ClrPerspective.cs
- MemberInfoSerializationHolder.cs
- PtsCache.cs
- XmlSerializerSection.cs
- SymbolEqualComparer.cs
- TypedMessageConverter.cs
- UnsafeNativeMethods.cs
- SectionInformation.cs
- WebHttpElement.cs
- KeyProperty.cs
- ProtocolImporter.cs
- CodeObjectCreateExpression.cs
- JoinTreeNode.cs
- FixUpCollection.cs
- EventPropertyMap.cs
- XPathNavigatorKeyComparer.cs
- ConstrainedGroup.cs
- MaskInputRejectedEventArgs.cs
- DataViewSettingCollection.cs
- DBDataPermission.cs
- TypeReference.cs
- GeneralTransform.cs
- SimpleBitVector32.cs
- altserialization.cs
- Model3D.cs
- ExtendedPropertyDescriptor.cs
- HtmlInputFile.cs
- AlternationConverter.cs
- BreadCrumbTextConverter.cs
- PathSegmentCollection.cs
- IsolatedStorageFile.cs
- UnmanagedHandle.cs
- InputMethod.cs
- OptimalBreakSession.cs
- FontResourceCache.cs
- WebBrowsableAttribute.cs
- List.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- RelationshipEnd.cs
- SerializationFieldInfo.cs
- GenerateTemporaryAssemblyTask.cs
- MetadataStore.cs
- LockedBorderGlyph.cs
- EntityStoreSchemaFilterEntry.cs
- DocumentViewerAutomationPeer.cs
- DocumentApplicationJournalEntry.cs
- ProcessHostServerConfig.cs
- BuilderPropertyEntry.cs
- ExceptionUtil.cs
- ColorMatrix.cs
- PresentationUIStyleResources.cs
- Variable.cs
- JournalEntry.cs
- ManipulationDevice.cs
- IItemContainerGenerator.cs
- TabControl.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- EventDescriptor.cs
- Decorator.cs
- Stack.cs
- DataGridSortingEventArgs.cs
- LayeredChannelListener.cs
- SecurityKeyType.cs
- StrokeNodeData.cs
- BatchParser.cs
- WebPartCatalogAddVerb.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- WorkflowCompensationBehavior.cs
- Activator.cs
- TypefaceMap.cs
- ObjectSpanRewriter.cs
- Canonicalizers.cs
- EnumValidator.cs
- SeekStoryboard.cs
- wgx_commands.cs
- cookiecollection.cs
- WebPartConnectionCollection.cs
- HTTPNotFoundHandler.cs
- TextContainer.cs
- TextTabProperties.cs
- DirectionalLight.cs
- GenericTypeParameterConverter.cs
- LinkedResource.cs
- DbFunctionCommandTree.cs
- MdiWindowListItemConverter.cs
- DbDataAdapter.cs
- HostingPreferredMapPath.cs
- XmlAnyAttributeAttribute.cs
- SqlDataSourceCommandEventArgs.cs
- VerticalConnector.xaml.cs
- Clock.cs
- DescendantBaseQuery.cs
- TableAutomationPeer.cs
- DesignTimeXamlWriter.cs
- RenderData.cs