Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewTextBoxColumn.cs / 1 / DataGridViewTextBoxColumn.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Text; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Globalization; ///[ToolboxBitmapAttribute(typeof(DataGridViewTextBoxColumn), "DataGridViewTextBoxColumn.bmp")] public class DataGridViewTextBoxColumn : DataGridViewColumn { private const int DATAGRIDVIEWTEXTBOXCOLUMN_maxInputLength = 32767; /// public DataGridViewTextBoxColumn() : base(new DataGridViewTextBoxCell()) { this.SortMode = DataGridViewColumnSortMode.Automatic; } /// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public override DataGridViewCell CellTemplate { get { return base.CellTemplate; } set { if (value != null && !(value is System.Windows.Forms.DataGridViewTextBoxCell)) { throw new InvalidCastException(SR.GetString(SR.DataGridViewTypeColumn_WrongCellTemplateType, "System.Windows.Forms.DataGridViewTextBoxCell")); } base.CellTemplate = value; } } /// [ DefaultValue(DATAGRIDVIEWTEXTBOXCOLUMN_maxInputLength), SRCategory(SR.CatBehavior), SRDescription(SR.DataGridView_TextBoxColumnMaxInputLengthDescr) ] public int MaxInputLength { get { if (this.TextBoxCellTemplate == null) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewColumn_CellTemplateRequired)); } return this.TextBoxCellTemplate.MaxInputLength; } set { if (this.MaxInputLength != value) { this.TextBoxCellTemplate.MaxInputLength = value; if (this.DataGridView != null) { DataGridViewRowCollection dataGridViewRows = this.DataGridView.Rows; int rowCount = dataGridViewRows.Count; for (int rowIndex = 0; rowIndex < rowCount; rowIndex++) { DataGridViewRow dataGridViewRow = dataGridViewRows.SharedRow(rowIndex); DataGridViewTextBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewTextBoxCell; if (dataGridViewCell != null) { dataGridViewCell.MaxInputLength = value; } } } } } } /// [ DefaultValue(DataGridViewColumnSortMode.Automatic) ] public new DataGridViewColumnSortMode SortMode { get { return base.SortMode; } set { base.SortMode = value; } } private DataGridViewTextBoxCell TextBoxCellTemplate { get { return (DataGridViewTextBoxCell) this.CellTemplate; } } /// public override string ToString() { StringBuilder sb = new StringBuilder(64); sb.Append("DataGridViewTextBoxColumn { Name="); sb.Append(this.Name); sb.Append(", Index="); sb.Append(this.Index.ToString(CultureInfo.CurrentCulture)); sb.Append(" }"); return sb.ToString(); } } } // 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.Text; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Globalization; ///[ToolboxBitmapAttribute(typeof(DataGridViewTextBoxColumn), "DataGridViewTextBoxColumn.bmp")] public class DataGridViewTextBoxColumn : DataGridViewColumn { private const int DATAGRIDVIEWTEXTBOXCOLUMN_maxInputLength = 32767; /// public DataGridViewTextBoxColumn() : base(new DataGridViewTextBoxCell()) { this.SortMode = DataGridViewColumnSortMode.Automatic; } /// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public override DataGridViewCell CellTemplate { get { return base.CellTemplate; } set { if (value != null && !(value is System.Windows.Forms.DataGridViewTextBoxCell)) { throw new InvalidCastException(SR.GetString(SR.DataGridViewTypeColumn_WrongCellTemplateType, "System.Windows.Forms.DataGridViewTextBoxCell")); } base.CellTemplate = value; } } /// [ DefaultValue(DATAGRIDVIEWTEXTBOXCOLUMN_maxInputLength), SRCategory(SR.CatBehavior), SRDescription(SR.DataGridView_TextBoxColumnMaxInputLengthDescr) ] public int MaxInputLength { get { if (this.TextBoxCellTemplate == null) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewColumn_CellTemplateRequired)); } return this.TextBoxCellTemplate.MaxInputLength; } set { if (this.MaxInputLength != value) { this.TextBoxCellTemplate.MaxInputLength = value; if (this.DataGridView != null) { DataGridViewRowCollection dataGridViewRows = this.DataGridView.Rows; int rowCount = dataGridViewRows.Count; for (int rowIndex = 0; rowIndex < rowCount; rowIndex++) { DataGridViewRow dataGridViewRow = dataGridViewRows.SharedRow(rowIndex); DataGridViewTextBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewTextBoxCell; if (dataGridViewCell != null) { dataGridViewCell.MaxInputLength = value; } } } } } } /// [ DefaultValue(DataGridViewColumnSortMode.Automatic) ] public new DataGridViewColumnSortMode SortMode { get { return base.SortMode; } set { base.SortMode = value; } } private DataGridViewTextBoxCell TextBoxCellTemplate { get { return (DataGridViewTextBoxCell) this.CellTemplate; } } /// public override string ToString() { StringBuilder sb = new StringBuilder(64); sb.Append("DataGridViewTextBoxColumn { Name="); sb.Append(this.Name); sb.Append(", Index="); sb.Append(this.Index.ToString(CultureInfo.CurrentCulture)); sb.Append(" }"); return sb.ToString(); } } } // 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
- HttpMethodConstraint.cs
- PointConverter.cs
- HtmlControl.cs
- PrintDialog.cs
- ItemMap.cs
- DefaultHttpHandler.cs
- GeometryDrawing.cs
- LineUtil.cs
- TransformedBitmap.cs
- RecordManager.cs
- DiscoveryClientDocuments.cs
- EntryPointNotFoundException.cs
- XmlLoader.cs
- Constants.cs
- LayeredChannelListener.cs
- UrlAuthorizationModule.cs
- Expression.cs
- GenericFlowSwitchHelper.cs
- StylusPlugin.cs
- Grid.cs
- Int32Rect.cs
- Error.cs
- Point4D.cs
- QilSortKey.cs
- Emitter.cs
- _DisconnectOverlappedAsyncResult.cs
- BinaryWriter.cs
- ListControlBoundActionList.cs
- DragStartedEventArgs.cs
- IPEndPointCollection.cs
- BuildProviderAppliesToAttribute.cs
- TdsParserSafeHandles.cs
- BamlVersionHeader.cs
- InitializationEventAttribute.cs
- BitmapFrame.cs
- SourceFileBuildProvider.cs
- Vector.cs
- CompositeCollectionView.cs
- TextEditorSelection.cs
- ProviderConnectionPoint.cs
- FormatConvertedBitmap.cs
- FtpRequestCacheValidator.cs
- X509Chain.cs
- WebPartCancelEventArgs.cs
- SetIndexBinder.cs
- DataTableTypeConverter.cs
- NavigationEventArgs.cs
- ExternalDataExchangeClient.cs
- SingleBodyParameterMessageFormatter.cs
- SmiRequestExecutor.cs
- PostBackOptions.cs
- ISAPIApplicationHost.cs
- NotFiniteNumberException.cs
- XamlLoadErrorInfo.cs
- ColorAnimation.cs
- PropertyValidationContext.cs
- StateMachine.cs
- XsltException.cs
- StringValueConverter.cs
- WindowsGraphics.cs
- ElementNotAvailableException.cs
- SID.cs
- TaskSchedulerException.cs
- LookupNode.cs
- WrappedIUnknown.cs
- VectorAnimation.cs
- ControlIdConverter.cs
- DbgCompiler.cs
- ExpandCollapsePattern.cs
- StorageMappingItemCollection.cs
- OpenTypeLayoutCache.cs
- ReversePositionQuery.cs
- SmtpNetworkElement.cs
- SizeAnimationUsingKeyFrames.cs
- ChangesetResponse.cs
- Debugger.cs
- ToolStripDesignerAvailabilityAttribute.cs
- SqlPersonalizationProvider.cs
- ContentPosition.cs
- EventListenerClientSide.cs
- webproxy.cs
- ReaderWriterLock.cs
- SqlConnectionString.cs
- DiscoveryEndpointValidator.cs
- QueryCoreOp.cs
- HandlerFactoryWrapper.cs
- GridItemProviderWrapper.cs
- NegatedConstant.cs
- TextBox.cs
- QuestionEventArgs.cs
- PcmConverter.cs
- RsaSecurityTokenParameters.cs
- PermissionRequestEvidence.cs
- ErrorStyle.cs
- XsdDateTime.cs
- PersonalizationDictionary.cs
- UriSection.cs
- ComponentCommands.cs
- NativeMethodsOther.cs
- ToolStripOverflow.cs