Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewToolTip.cs / 1305376 / DataGridViewToolTip.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Security; using System.Diagnostics; using System.Drawing; using System.Runtime.InteropServices; namespace System.Windows.Forms { public partial class DataGridView { private class DataGridViewToolTip { DataGridView dataGridView = null; ToolTip toolTip = null; private bool toolTipActivated = false; public DataGridViewToolTip(DataGridView dataGridView) { this.dataGridView = dataGridView; } public bool Activated { get { return this.toolTipActivated; } } public ToolTip ToolTip { get { return this.toolTip; } } public void Activate(bool activate) { if (this.dataGridView.DesignMode) { return; } // Create the tool tip handle on demand. if (activate && this.toolTip == null) { this.toolTip = new ToolTip(); this.toolTip.ShowAlways = true; this.toolTip.InitialDelay = 0; this.toolTip.UseFading = false; this.toolTip.UseAnimation = false; this.toolTip.AutoPopDelay = 0; } if (this.dataGridView.IsRestricted) { IntSecurity.AllWindows.Assert(); } try { if (activate) { this.toolTip.Active = true; this.toolTip.Show(this.dataGridView.ToolTipPrivate, this.dataGridView); } else if (this.toolTip != null) { this.toolTip.Hide(this.dataGridView); this.toolTip.Active = false; } } finally { if (this.dataGridView.IsRestricted) { CodeAccessPermission.RevertAssert(); } } this.toolTipActivated = activate; } public void Dispose() { if (this.toolTip != null) { this.toolTip.Dispose(); this.toolTip = null; } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Matrix3D.cs
- QueryAsyncResult.cs
- SuppressMessageAttribute.cs
- MsmqActivation.cs
- DataTrigger.cs
- tabpagecollectioneditor.cs
- FrameAutomationPeer.cs
- Polygon.cs
- BCLDebug.cs
- ApplicationTrust.cs
- ZoneMembershipCondition.cs
- MsmqMessage.cs
- EnumBuilder.cs
- StatusStrip.cs
- DeclarativeCatalogPartDesigner.cs
- SiteMapDataSourceView.cs
- ProvidersHelper.cs
- PriorityItem.cs
- DurableErrorHandler.cs
- View.cs
- Predicate.cs
- WindowsContainer.cs
- QuarticEase.cs
- DataGridColumnHeaderCollection.cs
- ContextMenu.cs
- RayHitTestParameters.cs
- ColumnBinding.cs
- FieldToken.cs
- InvokeHandlers.cs
- TemplateBamlTreeBuilder.cs
- CacheChildrenQuery.cs
- InputProviderSite.cs
- EncodingFallbackAwareXmlTextWriter.cs
- WebPartDisplayModeCollection.cs
- EditorZoneBase.cs
- HybridWebProxyFinder.cs
- PersonalizationStateInfo.cs
- CompositeDataBoundControl.cs
- ResXBuildProvider.cs
- DataService.cs
- SoapEnumAttribute.cs
- _HelperAsyncResults.cs
- IISUnsafeMethods.cs
- FlowchartSizeFeature.cs
- DefaultObjectMappingItemCollection.cs
- Exceptions.cs
- FilteredAttributeCollection.cs
- NativeCppClassAttribute.cs
- CompressedStack.cs
- PostBackTrigger.cs
- CacheForPrimitiveTypes.cs
- AssemblySettingAttributes.cs
- xamlnodes.cs
- RegexCompiler.cs
- PropertyChangingEventArgs.cs
- ResourceKey.cs
- TransformerConfigurationWizardBase.cs
- Invariant.cs
- ComplexLine.cs
- xamlnodes.cs
- NestedContainer.cs
- KeySpline.cs
- EditorZone.cs
- TagMapInfo.cs
- EntityTypeEmitter.cs
- httpapplicationstate.cs
- DataGridViewTopLeftHeaderCell.cs
- BStrWrapper.cs
- Comparer.cs
- HtmlElementCollection.cs
- Misc.cs
- ButtonBase.cs
- ParallelEnumerable.cs
- IDispatchConstantAttribute.cs
- UserControlBuildProvider.cs
- XmlComplianceUtil.cs
- UnitySerializationHolder.cs
- EntityTemplateUserControl.cs
- XmlElementCollection.cs
- LinkLabel.cs
- ImportContext.cs
- PermissionSet.cs
- ChangePassword.cs
- LocatorGroup.cs
- RequestTimeoutManager.cs
- CodeGenerator.cs
- OpenTypeLayout.cs
- WinEventWrap.cs
- StateFinalizationActivity.cs
- JulianCalendar.cs
- FactoryId.cs
- OleDbFactory.cs
- CustomAssemblyResolver.cs
- XmlILModule.cs
- XPathChildIterator.cs
- XPathBinder.cs
- EventLogPermissionAttribute.cs
- PointLightBase.cs
- RunWorkerCompletedEventArgs.cs
- ExceptionCollection.cs