本文介绍了如何设置datagridview列的最大长度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 DataGridView 可以在 TextBox 列中输入单位。

I have a DataGridView where the units can be entered in a TextBox column.

如何将此列的输入长度限制为 6 字符?

How do I restrict the input length of this column to 6 characters?

推荐答案

使用属性

Use the MaxInputLength property of the DataGridViewTextBoxColumn.

此属性可通过Designer或代码获取:

This property is available through the Designer or through code:

((DataGridViewTextBoxColumn)dataGridView1.Columns[yourColumn]).MaxInputLength = 6;

这篇关于如何设置datagridview列的最大长度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 06:19