Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- Proxy.cs
- ReadWriteSpinLock.cs
- WbemProvider.cs
- LayoutEditorPart.cs
- ServicesExceptionNotHandledEventArgs.cs
- TextServicesLoader.cs
- StyleCollection.cs
- PropertyGrid.cs
- XmlSerializationReader.cs
- ComponentChangingEvent.cs
- DataGridItem.cs
- UrlAuthorizationModule.cs
- SectionVisual.cs
- ResXBuildProvider.cs
- DebugView.cs
- CmsUtils.cs
- TabItem.cs
- DocumentXmlWriter.cs
- ChildDocumentBlock.cs
- PermissionListSet.cs
- RecognitionEventArgs.cs
- IndependentlyAnimatedPropertyMetadata.cs
- NegationPusher.cs
- RequestResponse.cs
- AssemblyResourceLoader.cs
- DebugView.cs
- ObjectQueryProvider.cs
- DispatcherSynchronizationContext.cs
- sqlstateclientmanager.cs
- SQlBooleanStorage.cs
- ConstructorNeedsTagAttribute.cs
- TemplateBindingExpression.cs
- PageRequestManager.cs
- EventData.cs
- TreeViewImageKeyConverter.cs
- WindowsMenu.cs
- GenericTypeParameterBuilder.cs
- StylusOverProperty.cs
- SocketElement.cs
- OverrideMode.cs
- XPathItem.cs
- WebConfigurationFileMap.cs
- SrgsElement.cs
- AbstractDataSvcMapFileLoader.cs
- ExternalException.cs
- Delegate.cs
- DataGridItemCollection.cs
- Parameter.cs
- Keyboard.cs
- ArithmeticException.cs
- RichTextBoxAutomationPeer.cs
- Model3DGroup.cs
- StructuredTypeInfo.cs
- Stackframe.cs
- ServiceContractGenerator.cs
- ContextStaticAttribute.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- SqlRowUpdatingEvent.cs
- Typography.cs
- TextBoxBase.cs
- TreeViewItem.cs
- Int64Converter.cs
- XPathBuilder.cs
- NetSectionGroup.cs
- WebPartChrome.cs
- FormatterServices.cs
- DataGridViewTextBoxCell.cs
- ServiceReference.cs
- ListControl.cs
- PermissionSet.cs
- TdsParser.cs
- RedirectionProxy.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- X509Utils.cs
- FontInfo.cs
- _LazyAsyncResult.cs
- ImageList.cs
- AvtEvent.cs
- XPathBuilder.cs
- Pointer.cs
- LinkLabel.cs
- TreeNodeSelectionProcessor.cs
- AttributeCollection.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- ExpressionQuoter.cs
- ConfigurationPermission.cs
- XmlDictionaryReaderQuotas.cs
- TreeNode.cs
- SecurityResources.cs
- ThousandthOfEmRealPoints.cs
- Stacktrace.cs
- XmlSchemaExporter.cs
- ProjectionCamera.cs
- DiscoveryClientDocuments.cs
- MenuItemBinding.cs
- UnsafeNativeMethods.cs
- HuffmanTree.cs
- SelectionManager.cs
- EventManager.cs
- CodePageUtils.cs