Code:
/ FX-1434 / FX-1434 / 1.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
- SqlConnectionStringBuilder.cs
- StylusDownEventArgs.cs
- EntitySqlQueryCacheKey.cs
- SystemWebExtensionsSectionGroup.cs
- XmlElementList.cs
- XmlSchemaInclude.cs
- ElementNotAvailableException.cs
- SystemIcmpV4Statistics.cs
- VirtualPathProvider.cs
- SqlParameterCollection.cs
- ComAwareEventInfo.cs
- DefaultSection.cs
- AutomationElementCollection.cs
- DesignerTextWriter.cs
- CompatibleComparer.cs
- ValidatorCollection.cs
- EventTrigger.cs
- FontWeights.cs
- InputProcessorProfilesLoader.cs
- TraceFilter.cs
- InputLanguageProfileNotifySink.cs
- HtmlHead.cs
- DbInsertCommandTree.cs
- StaticFileHandler.cs
- EntityDataSourceDesignerHelper.cs
- ResourceManagerWrapper.cs
- ShaderEffect.cs
- CleanUpVirtualizedItemEventArgs.cs
- ReadWriteControlDesigner.cs
- XsltCompileContext.cs
- XmlSchemaImport.cs
- ReceiveContent.cs
- DtdParser.cs
- RectangleF.cs
- FormView.cs
- EFAssociationProvider.cs
- EntityDataSourceDesignerHelper.cs
- HandlerFactoryWrapper.cs
- UrlAuthorizationModule.cs
- basecomparevalidator.cs
- TextSelection.cs
- SamlSecurityToken.cs
- ThemeableAttribute.cs
- CursorConverter.cs
- SimpleBitVector32.cs
- ResourceProperty.cs
- KeyInstance.cs
- EntityParameterCollection.cs
- SHA1CryptoServiceProvider.cs
- ExtensionFile.cs
- WmlMobileTextWriter.cs
- XamlWriter.cs
- Misc.cs
- AsymmetricKeyExchangeFormatter.cs
- XPathException.cs
- Quaternion.cs
- XDeferredAxisSource.cs
- SharedMemory.cs
- FontCollection.cs
- ProxyManager.cs
- DynamicRendererThreadManager.cs
- GridViewColumnCollection.cs
- CompatibleComparer.cs
- NavigationService.cs
- PagePropertiesChangingEventArgs.cs
- SharedConnectionWorkflowTransactionService.cs
- DocumentPaginator.cs
- autovalidator.cs
- DetailsViewInsertEventArgs.cs
- SiteMap.cs
- ActivityBindForm.Designer.cs
- SqlWorkflowPersistenceService.cs
- TextTrailingWordEllipsis.cs
- HttpChannelHelper.cs
- SecureConversationVersion.cs
- Span.cs
- NetPipeSectionData.cs
- PenLineCapValidation.cs
- IDQuery.cs
- ImageBrush.cs
- PartialCachingAttribute.cs
- RegistryPermission.cs
- DataListItemEventArgs.cs
- SQLGuidStorage.cs
- ScriptServiceAttribute.cs
- WebUtil.cs
- sortedlist.cs
- ExceptionRoutedEventArgs.cs
- BitConverter.cs
- AppModelKnownContentFactory.cs
- ImageListStreamer.cs
- CqlBlock.cs
- FrameworkTemplate.cs
- XmlSequenceWriter.cs
- MaterialGroup.cs
- JournalEntry.cs
- CodeComment.cs
- WebPartConnectionsConnectVerb.cs
- LoginAutoFormat.cs
- DynamicActivity.cs