添加 datagridviewcolumn 属性设计时

发布于 2024-09-19 19:44:34 字数 385 浏览 7 评论 0原文

我有这个问题,我创建了自己的 datagridviewcolumn,我希望添加一些可以在设计时编辑中更改的属性... 这是我的代码:

private int nMaxLength;
[Description("Fondoscala valore"), Category("Sea")]
public int MaxLength
{
    get { return nMaxLength; }
    set { nMaxLength = value; }
}

事实上没问题,当您打开列编辑器时,您会在 Sea 类别下看到此属性,您可以更改它,但是当您更改它时,如果您转到 .Designer.cs 文件,您会看到MaxLength 值为 0.. 没有变化... 有什么问题吗? 提前致谢

I have this problem, I created my own datagridviewcolumn and I wish add some properties that you can change in designtime editing...
here is my code:

private int nMaxLength;
[Description("Fondoscala valore"), Category("Sea")]
public int MaxLength
{
    get { return nMaxLength; }
    set { nMaxLength = value; }
}

and in fact is ok, when you open the column editor, you see this property under the Sea category and you can change, but when you changed it, if you go to the .Designer.cs file, you see the MaxLength value to 0.. no change...
what's the problem??
thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧街凉风 2024-09-26 19:44:55

表单设计器做了一些内部欺骗,以便允许您在设计时更改列类型(例如,从DataGridViewTextBoxColumnDataGridViewButtonColumn)。因此,设计器依赖于具有正确实现的 Clone() 方法的 DataGridViewColumn 子类,即:

public override object Clone() {
    MyDataGridViewColumn that = (MyDataGridViewColumn)base.Clone();
    that.MaxLength = this.MaxLength;
    return that;
}

如果您不重写 Clone () 方法中,设计器不会提交您对自定义属性值所做的任何更改。

The Forms Designer does some internal trickery in order to allow you to change the column type (e.g. from DataGridViewTextBoxColumn to DataGridViewButtonColumn) at design time. As a result of this, the designer relies on your subclass of DataGridViewColumn having a correctly-implemented Clone() method, i.e:

public override object Clone() {
    MyDataGridViewColumn that = (MyDataGridViewColumn)base.Clone();
    that.MaxLength = this.MaxLength;
    return that;
}

If you do not override the Clone() method, the designer will not commit any changes you make to custom property values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文