NumericUpDown 类型的问题

发布于 2024-09-10 10:44:33 字数 1291 浏览 8 评论 0原文

当我做这样的事情时:

public static void BindData<T>(this System.Windows.Forms.Control.ControlCollection controls, T bind)
    {
        foreach (Control control in controls)
        {
            if (control.GetType() == typeof(System.Windows.Forms.TextBox) || control.GetType().IsSubclassOf(typeof(System.Windows.Forms.TextBox)))
            {
                UtilityBindData(control, bind);
            }
            else
            {
                if (control.Controls.Count == 0)
                {
                    UtilityBindData(control, bind);
                }
                else
                {
                    control.Controls.BindData(bind);
                }
            }
        }
    }

    private static void UtilityBindData<T>(Control control, T bind)
    {
        Type type = control.GetType();

        PropertyInfo propertyInfo = type.GetProperty("BindingProperty");
        if (propertyInfo == null)
            propertyInfo = type.GetProperty("Tag");

// rest of the code....

其中控件是 System.Windows.Forms.Control.ControlCollection 并且在作为参数传递给这段代码的表单上的控件中有 NumericUpDowns,我找不到它们位于控件集合(controls=myForm.Controls)中,但还有其他类型的控件(updownbutton、updownedit)。问题是我想获取 NumericUpDown 的 Tag 属性,但在使用检查表单控件的递归方法时无法获取它。

When i do something like this:

public static void BindData<T>(this System.Windows.Forms.Control.ControlCollection controls, T bind)
    {
        foreach (Control control in controls)
        {
            if (control.GetType() == typeof(System.Windows.Forms.TextBox) || control.GetType().IsSubclassOf(typeof(System.Windows.Forms.TextBox)))
            {
                UtilityBindData(control, bind);
            }
            else
            {
                if (control.Controls.Count == 0)
                {
                    UtilityBindData(control, bind);
                }
                else
                {
                    control.Controls.BindData(bind);
                }
            }
        }
    }

    private static void UtilityBindData<T>(Control control, T bind)
    {
        Type type = control.GetType();

        PropertyInfo propertyInfo = type.GetProperty("BindingProperty");
        if (propertyInfo == null)
            propertyInfo = type.GetProperty("Tag");

// rest of the code....

where controls is System.Windows.Forms.Control.ControlCollection and among controls on the form that is passed as a parameter to this piece of code there are NumericUpDowns, i cant find them in the controls collection (controls=myForm.Controls), but there are controls of other types(updownbutton, updownedit). The problem is that i want to get NumericUpDown's Tag property and just cant get it when using that recursive method of checking form controls.

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

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

发布评论

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

评论(1

过期情话 2024-09-17 10:44:33

Tag 属性Control 类定义。

因此,你根本不需要反思;您可以简单地编写

object tag = control.Tag;

您的代码不起作用,因为控件的实际类型(例如,NumericUpDown)没有定义单独的Tag属性,并且GetProperty 不搜索基类属性。


顺便说一下,在你的第一个 if 状态中,你可以简单地写

if (control is TextBox)

The Tag property is defined by the Control class.

Therefore, you don't need reflection at all; you can simply write

object tag = control.Tag;

Your code isn't working because the control's actual type (eg, NumericUpDown) doesn't define a separate Tag property, and GetProperty doesn't search base class properties.


By the way, in your first if statemeant, you can simply write

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