Code:
/ DotNET / DotNET / 8.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
- grammarelement.cs
- PageCache.cs
- _SpnDictionary.cs
- XmlAnyAttributeAttribute.cs
- OuterGlowBitmapEffect.cs
- UnsafeNativeMethods.cs
- HyperLinkStyle.cs
- Row.cs
- ContentDisposition.cs
- TemplateControlBuildProvider.cs
- TrackingConditionCollection.cs
- ServiceBusyException.cs
- URLBuilder.cs
- EditModeSwitchButton.cs
- PresentationUIStyleResources.cs
- CTreeGenerator.cs
- DataTableCollection.cs
- BlurEffect.cs
- CoreSwitches.cs
- XmlIterators.cs
- ByteStorage.cs
- XhtmlTextWriter.cs
- QilList.cs
- EntityContainerAssociationSet.cs
- ScriptReferenceEventArgs.cs
- NotSupportedException.cs
- AbsoluteQuery.cs
- BitVector32.cs
- VisualStyleElement.cs
- XPathMultyIterator.cs
- EditorZoneBase.cs
- ExpressionQuoter.cs
- ListViewSelectEventArgs.cs
- DefaultCommandConverter.cs
- Configuration.cs
- RTLAwareMessageBox.cs
- ForwardPositionQuery.cs
- CustomErrorsSectionWrapper.cs
- AspNetPartialTrustHelpers.cs
- Error.cs
- CompilerCollection.cs
- WebPartMovingEventArgs.cs
- FormsIdentity.cs
- RepeatBehaviorConverter.cs
- ExcCanonicalXml.cs
- ServicePointManager.cs
- COM2Properties.cs
- ConfigXmlElement.cs
- DataGridViewEditingControlShowingEventArgs.cs
- SafeNativeMethodsMilCoreApi.cs
- DiffuseMaterial.cs
- PageOrientation.cs
- SizeConverter.cs
- ConnectionString.cs
- XslException.cs
- SrgsDocument.cs
- ObjectHandle.cs
- ShutDownListener.cs
- DiscoveryClient.cs
- DocumentViewerHelper.cs
- PrincipalPermission.cs
- SectionInformation.cs
- PageTheme.cs
- ConversionContext.cs
- MethodToken.cs
- SplitterEvent.cs
- SourceItem.cs
- LinkLabel.cs
- ListViewAutomationPeer.cs
- _CacheStreams.cs
- MediaElement.cs
- MinimizableAttributeTypeConverter.cs
- WebBrowserProgressChangedEventHandler.cs
- DesignerHierarchicalDataSourceView.cs
- QuaternionConverter.cs
- CmsUtils.cs
- ConfigurationProperty.cs
- MarshalByValueComponent.cs
- StringDictionary.cs
- NetDataContractSerializer.cs
- AsyncStreamReader.cs
- AnimationStorage.cs
- XmlArrayItemAttribute.cs
- AutoResizedEvent.cs
- SettingsPropertyIsReadOnlyException.cs
- SqlDependencyListener.cs
- VisualTransition.cs
- TerminateDesigner.cs
- DropTarget.cs
- FunctionImportMapping.cs
- ReadOnlyTernaryTree.cs
- DBConcurrencyException.cs
- EventSetter.cs
- BamlRecords.cs
- LinearGradientBrush.cs
- WebEventTraceProvider.cs
- DataBinder.cs
- TextWriter.cs
- ConnectorMovedEventArgs.cs
- DomainUpDown.cs