Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- SapiRecoInterop.cs
- GlyphRun.cs
- PropertyItem.cs
- NullReferenceException.cs
- Button.cs
- SqlClientPermission.cs
- XmlWrappingWriter.cs
- AuthenticationConfig.cs
- WorkBatch.cs
- ObjectStateEntryDbDataRecord.cs
- _CacheStreams.cs
- ProcessThreadDesigner.cs
- MethodImplAttribute.cs
- FrameworkContentElementAutomationPeer.cs
- SecurityElement.cs
- SelectionListDesigner.cs
- OleDbCommand.cs
- RC2.cs
- AppDomainAttributes.cs
- XpsFixedPageReaderWriter.cs
- TextEmbeddedObject.cs
- CngUIPolicy.cs
- DbParameterHelper.cs
- InvokeBinder.cs
- BitmapVisualManager.cs
- ClientType.cs
- RectAnimationUsingKeyFrames.cs
- RegexWorker.cs
- ColorIndependentAnimationStorage.cs
- ComponentConverter.cs
- TraceContext.cs
- SqlDataSource.cs
- IIS7WorkerRequest.cs
- Int32AnimationUsingKeyFrames.cs
- QueryCursorEventArgs.cs
- HtmlValidatorAdapter.cs
- PictureBox.cs
- MD5.cs
- CreateUserWizard.cs
- TrackBarRenderer.cs
- MDIClient.cs
- xdrvalidator.cs
- WindowsStatusBar.cs
- DataGridParentRows.cs
- AffineTransform3D.cs
- Action.cs
- ReliabilityContractAttribute.cs
- printdlgexmarshaler.cs
- FileEnumerator.cs
- CompiledELinqQueryState.cs
- FormatConvertedBitmap.cs
- ListControlActionList.cs
- NameValueCollection.cs
- CustomWebEventKey.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- EventProviderClassic.cs
- WaitingCursor.cs
- SimpleTableProvider.cs
- InvalidAsynchronousStateException.cs
- List.cs
- HitTestWithGeometryDrawingContextWalker.cs
- SegmentInfo.cs
- RTLAwareMessageBox.cs
- FontDriver.cs
- XmlEventCache.cs
- CatalogPartCollection.cs
- InstanceDataCollectionCollection.cs
- DataRowChangeEvent.cs
- CookieParameter.cs
- Exceptions.cs
- RuntimeCompatibilityAttribute.cs
- CodeEventReferenceExpression.cs
- FontCollection.cs
- SqlDataSourceFilteringEventArgs.cs
- PolicyLevel.cs
- listitem.cs
- ConfigurationSection.cs
- UnsafeNativeMethods.cs
- LineServicesRun.cs
- DispatcherExceptionFilterEventArgs.cs
- _FixedSizeReader.cs
- WindowsRichEditRange.cs
- Utils.cs
- mediaeventshelper.cs
- HostingEnvironmentException.cs
- AccessText.cs
- TextParentUndoUnit.cs
- GridViewRowPresenter.cs
- DBConnectionString.cs
- RegexTree.cs
- SqlExpander.cs
- MSAAEventDispatcher.cs
- TraceHwndHost.cs
- ListViewHitTestInfo.cs
- InternalConfigHost.cs
- ModulesEntry.cs
- CalendarTable.cs
- Volatile.cs
- PrinterResolution.cs
- Executor.cs