Code:
/ DotNET / DotNET / 8.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
- WizardStepBase.cs
- BitmapDecoder.cs
- ToolboxCategory.cs
- SevenBitStream.cs
- DataSetUtil.cs
- PerformanceCounters.cs
- ClientTarget.cs
- SmiMetaData.cs
- XmlDocumentViewSchema.cs
- FileDialog_Vista.cs
- StringAnimationBase.cs
- VariableQuery.cs
- WindowsComboBox.cs
- StackSpiller.Generated.cs
- FrameworkContentElement.cs
- ReferencedAssembly.cs
- datacache.cs
- ListViewItemSelectionChangedEvent.cs
- ClientFormsAuthenticationCredentials.cs
- BinaryWriter.cs
- ResumeStoryboard.cs
- ExpressionConverter.cs
- DynamicQueryStringParameter.cs
- Overlapped.cs
- DataGridViewCellStyleChangedEventArgs.cs
- ViewSimplifier.cs
- TcpConnectionPoolSettingsElement.cs
- HtmlHistory.cs
- PointCollectionValueSerializer.cs
- XamlFilter.cs
- DataServices.cs
- OdbcConnection.cs
- ImageMetadata.cs
- ServicePointManagerElement.cs
- XmlEventCache.cs
- Int64AnimationBase.cs
- RefreshEventArgs.cs
- FolderLevelBuildProvider.cs
- BitStack.cs
- EncodingInfo.cs
- ListControl.cs
- PointHitTestParameters.cs
- HostSecurityManager.cs
- EndPoint.cs
- AdornerLayer.cs
- Compiler.cs
- TextEditor.cs
- ToolTipAutomationPeer.cs
- SchemaImporter.cs
- ObjectHelper.cs
- RecognizeCompletedEventArgs.cs
- DbCommandTree.cs
- DoubleAnimationBase.cs
- DataTrigger.cs
- ImageDrawing.cs
- SessionPageStateSection.cs
- XamlTypeWithExplicitNamespace.cs
- RevocationPoint.cs
- ReadOnlyHierarchicalDataSourceView.cs
- LookupBindingPropertiesAttribute.cs
- NamedPipeTransportBindingElement.cs
- TextChange.cs
- OpenFileDialog.cs
- DllNotFoundException.cs
- DataBindingList.cs
- PowerModeChangedEventArgs.cs
- SqlDataReader.cs
- DataGridViewControlCollection.cs
- Base64Encoding.cs
- SimpleFieldTemplateUserControl.cs
- IpcManager.cs
- InvocationExpression.cs
- ModulesEntry.cs
- WebPartEditVerb.cs
- ToolStripItemImageRenderEventArgs.cs
- CompModSwitches.cs
- regiisutil.cs
- WmpBitmapDecoder.cs
- StringUtil.cs
- IISMapPath.cs
- DecimalConverter.cs
- TextFormatterImp.cs
- ToolStripItemDesigner.cs
- BaseCollection.cs
- CompiledIdentityConstraint.cs
- XamlSerializerUtil.cs
- WebPartHelpVerb.cs
- ForceCopyBuildProvider.cs
- BigInt.cs
- EmptyArray.cs
- XmlComplianceUtil.cs
- StyleModeStack.cs
- DataPagerFieldItem.cs
- FontDifferentiator.cs
- FaultDesigner.cs
- DataSvcMapFileSerializer.cs
- ToolStripSystemRenderer.cs
- ToolStripContainer.cs
- BufferedWebEventProvider.cs
- TokenBasedSet.cs