Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewElement.cs / 1 / DataGridViewElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Drawing; using System.Diagnostics; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; ////// /// public class DataGridViewElement { private DataGridViewElementStates state; // enabled frozen readOnly resizable selected visible private DataGridView dataGridView; ///Identifies an element in the dataGridView (base class for TCell, TBand, TRow, TColumn. ////// /// public DataGridViewElement() { this.state = DataGridViewElementStates.Visible; } internal DataGridViewElement(DataGridViewElement dgveTemplate) { // Selected and Displayed states are not inherited this.state = dgveTemplate.State & (DataGridViewElementStates.Frozen | DataGridViewElementStates.ReadOnly | DataGridViewElementStates.Resizable | DataGridViewElementStates.ResizableSet | DataGridViewElementStates.Visible); } ////// Initializes a new instance of the ///class. /// [ Browsable(false), EditorBrowsable(EditorBrowsableState.Advanced) ] public virtual DataGridViewElementStates State { get { return this.state; } } internal DataGridViewElementStates StateInternal { set { this.state = value; } } internal bool StateIncludes(DataGridViewElementStates elementState) { return (this.State & elementState) == elementState; } internal bool StateExcludes(DataGridViewElementStates elementState) { return (this.State & elementState) == 0; } /// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public DataGridView DataGridView { get { return this.dataGridView; } } internal DataGridView DataGridViewInternal { set { if (this.DataGridView != value) { this.dataGridView = value; OnDataGridViewChanged(); } } } /// protected virtual void OnDataGridViewChanged() { } /// [SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate")] // Method raises an event for the grid control protected void RaiseCellClick(DataGridViewCellEventArgs e) { if (this.dataGridView != null) { this.dataGridView.OnCellClickInternal(e); } } /// [SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate")] // Method raises an event for the grid control protected void RaiseCellContentClick(DataGridViewCellEventArgs e) { if (this.dataGridView != null) { this.dataGridView.OnCellContentClickInternal(e); } } /// [SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate")] // Method raises an event for the grid control protected void RaiseCellContentDoubleClick(DataGridViewCellEventArgs e) { if (this.dataGridView != null) { this.dataGridView.OnCellContentDoubleClickInternal(e); } } /// [SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate")] // Method raises an event for the grid control protected void RaiseCellValueChanged(DataGridViewCellEventArgs e) { if (this.dataGridView != null) { this.dataGridView.OnCellValueChangedInternal(e); } } /// [SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate")] // Method raises an event for the grid control protected void RaiseDataError(DataGridViewDataErrorEventArgs e) { if (this.dataGridView != null) { this.dataGridView.OnDataErrorInternal(e); } } /// [SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate")] // Method raises an event for the grid control protected void RaiseMouseWheel(MouseEventArgs e) { if (this.dataGridView != null) { this.dataGridView.OnMouseWheelInternal(e); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HandlerFactoryWrapper.cs
- PathGeometry.cs
- StringFreezingAttribute.cs
- ConfigurationSectionCollection.cs
- XPathScanner.cs
- DataGridViewTextBoxEditingControl.cs
- XmlNodeList.cs
- EnumBuilder.cs
- CommandHelpers.cs
- Latin1Encoding.cs
- TextLine.cs
- XmlSchemaProviderAttribute.cs
- EventLogPermissionEntry.cs
- CaseExpr.cs
- XsltContext.cs
- DecimalConstantAttribute.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- UnicodeEncoding.cs
- SortedDictionary.cs
- XmlSchemaImporter.cs
- CodeSubDirectory.cs
- HashSetDebugView.cs
- TreeViewEvent.cs
- ResourceExpressionBuilder.cs
- EmbeddedMailObject.cs
- TreeNodeBindingCollection.cs
- GroupItem.cs
- PreloadedPackages.cs
- HostingEnvironmentException.cs
- ValueSerializerAttribute.cs
- metrodevice.cs
- SQLMoneyStorage.cs
- SettingsPropertyNotFoundException.cs
- _DigestClient.cs
- DebugViewWriter.cs
- GlyphRun.cs
- TextEndOfParagraph.cs
- RequestCacheManager.cs
- RequestQueryParser.cs
- EntitySqlQueryCacheEntry.cs
- QilChoice.cs
- ProcessHostMapPath.cs
- DockProviderWrapper.cs
- ScrollItemPatternIdentifiers.cs
- ManagementNamedValueCollection.cs
- RelatedEnd.cs
- AnyAllSearchOperator.cs
- StrokeFIndices.cs
- UIServiceHelper.cs
- FrameworkElementAutomationPeer.cs
- HScrollProperties.cs
- BindToObject.cs
- DataGridViewAdvancedBorderStyle.cs
- SrgsElementFactoryCompiler.cs
- EntityDataSourceUtil.cs
- TextLine.cs
- PrimitiveCodeDomSerializer.cs
- SQLMembershipProvider.cs
- DbConnectionPoolCounters.cs
- UIntPtr.cs
- MobileListItem.cs
- RequestTimeoutManager.cs
- MD5CryptoServiceProvider.cs
- SettingsSection.cs
- SiteIdentityPermission.cs
- AnimatedTypeHelpers.cs
- ClientTargetCollection.cs
- StringUtil.cs
- MembershipPasswordException.cs
- DynamicUpdateCommand.cs
- ObjectFullSpanRewriter.cs
- Point3DAnimation.cs
- ColumnWidthChangingEvent.cs
- GeneralTransform2DTo3DTo2D.cs
- FontCollection.cs
- BamlCollectionHolder.cs
- ProcessStartInfo.cs
- CommandLibraryHelper.cs
- DataObject.cs
- ResourceManagerWrapper.cs
- WindowsGraphics.cs
- EmbeddedMailObjectsCollection.cs
- ExtendedProtectionPolicyTypeConverter.cs
- CompilerScope.cs
- XamlToRtfWriter.cs
- LookupNode.cs
- Span.cs
- OptimalTextSource.cs
- SectionXmlInfo.cs
- DbSourceParameterCollection.cs
- UTF7Encoding.cs
- StickyNote.cs
- ControlPropertyNameConverter.cs
- CompressedStack.cs
- ImageFormatConverter.cs
- OdbcParameterCollection.cs
- UTF8Encoding.cs
- WebPartAuthorizationEventArgs.cs
- SubtreeProcessor.cs
- ModelTypeConverter.cs