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
- OLEDB_Enum.cs
- ConstraintEnumerator.cs
- WeakKeyDictionary.cs
- MemoryPressure.cs
- HtmlEmptyTagControlBuilder.cs
- ListItemCollection.cs
- PeerConnector.cs
- StyleSheet.cs
- CapabilitiesSection.cs
- HttpResponse.cs
- PrintPreviewControl.cs
- OdbcError.cs
- ParallelActivityDesigner.cs
- ConnectionPoint.cs
- ThreadSafeList.cs
- FormDocumentDesigner.cs
- SwitchLevelAttribute.cs
- X509SecurityTokenAuthenticator.cs
- NavigatorInput.cs
- CoreSwitches.cs
- EntityDataSourceView.cs
- MenuItemBinding.cs
- ContentHostHelper.cs
- ToolStripPanel.cs
- ZoneMembershipCondition.cs
- HtmlTextArea.cs
- SqlClientMetaDataCollectionNames.cs
- CodeThrowExceptionStatement.cs
- BindingList.cs
- XmlNamespaceMappingCollection.cs
- QueryInterceptorAttribute.cs
- ScrollItemProviderWrapper.cs
- CompilerTypeWithParams.cs
- formatstringdialog.cs
- StringFormat.cs
- TextTreeFixupNode.cs
- XmlDsigSep2000.cs
- DataList.cs
- ContextStaticAttribute.cs
- DataObjectEventArgs.cs
- FunctionDescription.cs
- SqlDependencyListener.cs
- Thumb.cs
- SafeFileMappingHandle.cs
- DrawingState.cs
- WebPartDisplayModeCancelEventArgs.cs
- ColumnTypeConverter.cs
- SessionStateUtil.cs
- RelatedPropertyManager.cs
- VerificationAttribute.cs
- RadioButtonRenderer.cs
- HtmlSelectionListAdapter.cs
- DictionaryChange.cs
- DocumentSchemaValidator.cs
- DocumentEventArgs.cs
- WebPartConnectionCollection.cs
- XhtmlBasicObjectListAdapter.cs
- DirectoryObjectSecurity.cs
- DataPointer.cs
- BackStopAuthenticationModule.cs
- WindowsGraphics.cs
- XmlSchemaSubstitutionGroup.cs
- XLinq.cs
- XmlSchemaSequence.cs
- ReadWriteObjectLock.cs
- CharacterMetricsDictionary.cs
- SendingRequestEventArgs.cs
- BrowserCapabilitiesFactoryBase.cs
- RegionInfo.cs
- RangeValueProviderWrapper.cs
- DefaultMemberAttribute.cs
- FixedTextView.cs
- PerspectiveCamera.cs
- PageBuildProvider.cs
- Codec.cs
- WmpBitmapEncoder.cs
- RemoveStoryboard.cs
- StorageEntityContainerMapping.cs
- DefinitionUpdate.cs
- HtmlForm.cs
- SerialStream.cs
- objectquery_tresulttype.cs
- ContractMapping.cs
- PerfCounterSection.cs
- TypeConverterValueSerializer.cs
- PixelFormat.cs
- ListViewHitTestInfo.cs
- TypeConverterAttribute.cs
- ScriptDescriptor.cs
- MergeFilterQuery.cs
- SqlClientWrapperSmiStream.cs
- ComponentTray.cs
- TextTreePropertyUndoUnit.cs
- InstalledFontCollection.cs
- WeakHashtable.cs
- DataGridHeaderBorder.cs
- ZipArchive.cs
- TrackingProfileSerializer.cs
- EventLog.cs
- EventSinkHelperWriter.cs