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
- OrderedHashRepartitionEnumerator.cs
- SpnegoTokenProvider.cs
- FullTextBreakpoint.cs
- SharedConnectionWorkflowTransactionService.cs
- OleDbEnumerator.cs
- Config.cs
- DelegateSerializationHolder.cs
- SystemResourceKey.cs
- LineProperties.cs
- ActivityExecutor.cs
- LessThan.cs
- UICuesEvent.cs
- HttpRuntimeSection.cs
- CodeMemberField.cs
- XmlNodeChangedEventArgs.cs
- ListBox.cs
- CodeTypeDeclarationCollection.cs
- cryptoapiTransform.cs
- ContentPosition.cs
- recordstate.cs
- MsmqVerifier.cs
- ToolStripStatusLabel.cs
- BitmapPalettes.cs
- GridViewDeleteEventArgs.cs
- ContactManager.cs
- RoutedEvent.cs
- MatrixIndependentAnimationStorage.cs
- RequestChannelBinder.cs
- thaishape.cs
- ProfilePropertySettings.cs
- FloaterParaClient.cs
- _RegBlobWebProxyDataBuilder.cs
- SetterTriggerConditionValueConverter.cs
- DrawingContextDrawingContextWalker.cs
- CookieProtection.cs
- VisualStyleElement.cs
- ToolboxService.cs
- MetabaseReader.cs
- ErrorView.xaml.cs
- TripleDESCryptoServiceProvider.cs
- TableSectionStyle.cs
- PerformanceCounterLib.cs
- XNodeValidator.cs
- PEFileEvidenceFactory.cs
- ScriptResourceAttribute.cs
- ApplicationGesture.cs
- PropertyEmitter.cs
- Trace.cs
- AppSettingsExpressionBuilder.cs
- FacetDescription.cs
- PasswordTextContainer.cs
- ScriptIgnoreAttribute.cs
- LicenseContext.cs
- RSATokenProvider.cs
- XmlSchemaValidator.cs
- TraceSwitch.cs
- DynamicResourceExtension.cs
- Vector3DAnimation.cs
- Rect.cs
- ToolTip.cs
- RedistVersionInfo.cs
- SafeMILHandle.cs
- CodeTypeDelegate.cs
- input.cs
- TemplateNameScope.cs
- RewritingValidator.cs
- MatrixAnimationUsingPath.cs
- CommentAction.cs
- StdValidatorsAndConverters.cs
- SyndicationPerson.cs
- DocumentOrderQuery.cs
- BitmapCacheBrush.cs
- DoubleAnimationUsingKeyFrames.cs
- QilCloneVisitor.cs
- ConstructorNeedsTagAttribute.cs
- TextBoxBaseDesigner.cs
- _KerberosClient.cs
- ActivityExecutionFilter.cs
- BitmapCodecInfoInternal.cs
- HostingEnvironmentException.cs
- HwndSourceKeyboardInputSite.cs
- SubstitutionResponseElement.cs
- EntitySetBaseCollection.cs
- ZipIOCentralDirectoryBlock.cs
- FixedSOMSemanticBox.cs
- DataSourceGroupCollection.cs
- ApplicationBuildProvider.cs
- GroupBox.cs
- ElementHost.cs
- NetSectionGroup.cs
- NetworkCredential.cs
- PhonemeEventArgs.cs
- SiteIdentityPermission.cs
- ScrollEvent.cs
- Tablet.cs
- GridViewCellAutomationPeer.cs
- NamedElement.cs
- PageAdapter.cs
- DataBinder.cs
- _DomainName.cs