Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewElement.cs / 1305376 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DerivedKeySecurityTokenStub.cs
- GridViewRowPresenterBase.cs
- TableCellAutomationPeer.cs
- PrintSchema.cs
- RuntimeConfigLKG.cs
- RadioButtonList.cs
- EditableLabelControl.cs
- OdbcConnectionString.cs
- ToolboxItem.cs
- EditBehavior.cs
- BindingExpressionUncommonField.cs
- MimeMultiPart.cs
- ProtectedConfiguration.cs
- RegexStringValidatorAttribute.cs
- Renderer.cs
- InputReferenceExpression.cs
- CssTextWriter.cs
- DataKeyArray.cs
- SqlXml.cs
- RC2.cs
- BrowserDefinition.cs
- WebEvents.cs
- ObjectDataSourceEventArgs.cs
- OleDbFactory.cs
- VectorCollection.cs
- ReferentialConstraint.cs
- SourceChangedEventArgs.cs
- CurrentChangingEventArgs.cs
- DictionaryBase.cs
- EntityClientCacheEntry.cs
- ViewStateException.cs
- CalendarDayButton.cs
- XamlTreeBuilder.cs
- DebugInfoExpression.cs
- CombinedGeometry.cs
- Attachment.cs
- MasterPageCodeDomTreeGenerator.cs
- DataControlImageButton.cs
- ListViewItemMouseHoverEvent.cs
- NestedContainer.cs
- DataViewListener.cs
- KoreanCalendar.cs
- SQLDateTimeStorage.cs
- EntityDataSourceColumn.cs
- HttpCapabilitiesBase.cs
- BitmapEffectDrawing.cs
- SplashScreenNativeMethods.cs
- HelpKeywordAttribute.cs
- DbDataSourceEnumerator.cs
- TreeViewCancelEvent.cs
- CodeEntryPointMethod.cs
- TextReader.cs
- SEHException.cs
- NullableIntMinMaxAggregationOperator.cs
- XmlObjectSerializerWriteContext.cs
- AnimatedTypeHelpers.cs
- TextSegment.cs
- XmlBoundElement.cs
- FileChangeNotifier.cs
- IISUnsafeMethods.cs
- ListViewItemEventArgs.cs
- GacUtil.cs
- SystemIPv6InterfaceProperties.cs
- InstanceNameConverter.cs
- nulltextcontainer.cs
- storepermissionattribute.cs
- SystemNetworkInterface.cs
- GACIdentityPermission.cs
- FileDialogCustomPlace.cs
- GridViewHeaderRowPresenter.cs
- RepeaterItemCollection.cs
- NGCSerializationManagerAsync.cs
- BaseCAMarshaler.cs
- StreamingContext.cs
- IgnoreFileBuildProvider.cs
- GrammarBuilder.cs
- IconBitmapDecoder.cs
- OuterGlowBitmapEffect.cs
- UDPClient.cs
- DataObjectAttribute.cs
- ContentElement.cs
- MobileControlDesigner.cs
- JoinGraph.cs
- UserControlParser.cs
- DbInsertCommandTree.cs
- Math.cs
- RuntimeIdentifierPropertyAttribute.cs
- SqlDataSourceCustomCommandEditor.cs
- PropertyNames.cs
- DescendentsWalkerBase.cs
- AnnotationHelper.cs
- FormatPage.cs
- PeerUnsafeNativeCryptMethods.cs
- ThemeableAttribute.cs
- XslTransform.cs
- EdmSchemaError.cs
- HttpModuleActionCollection.cs
- MouseGestureConverter.cs
- _CookieModule.cs
- PeerApplicationLaunchInfo.cs