获取 PropertyGrid 的内容?

发布于 2024-07-29 01:53:22 字数 107 浏览 5 评论 0原文

我是 C# 新手,长期 C++ 程序员,我只是想知道是否使用 .selectedObjects 初始化了 propertygrid。 有没有办法获取属性网格中当前值的内容。

I'm new to C#, long time C++ programmer, im just wondering once initalising a propertygrid using .selectedObjects. Is there a way to get contents of the current values in the propertygrid.

Ben

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

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

发布评论

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

评论(2

楠木可依 2024-08-05 01:53:22

PropertyGrid 不会向消费者公开其内部结构。

但是,.Net 允许您执行“反射”来检查代码的结构(和执行部分),包括类属性。

这里是一篇介绍反射基础知识的文章。 实际上,您可以通过反射看到比属性网格显示的更多的内部结构。

PropertyGrid doesn't expose its internals to the consumer.

However, .Net lets you perform "Refelction" to examine the structure (and execute parts of) code, including class properties.

Here is an article that covers the basics of reflection. You can actually see more of the internals with reflection than what the property grid displays.

牛↙奶布丁 2024-08-05 01:53:22

您必须使用基于对象类型的反射来迭代网格中对象的所有属性。

object o = PropertyGrid.SelectedObject;
Type t = o.GetType();  // We will work on type "t"
List<MemberInfo> members = new List<MemberInfo>();
members.AddRange(t.GetProperties(BindingFlags.Public | BindingFlags.GetProperty | BindingFlags.Instance);  // Get the public instance properties list
foreach (MemberInfo member in members)
{
    Type type = null;
    object value = null;
    PropertyInfo pi = (member as PropertyInfo);
    type = pi.PropertyType;
    if (type.IsSubclassOf(typeof(CollectionBase)))
        continue;  // Sorry
    if (pi.GetCustomAttributes(typeof(NotSerializedAttribute), true).GetLength(0) > 0)
        continue;
    if (!pi.CanRead || !pi.CanWrite)
        continue;
    value = pi.GetValue(o, null);
    // TODO Print out, or save the "value"
}

You have to iterate through all the properties of the object in the grid, using Reflection based in the object's type.

object o = PropertyGrid.SelectedObject;
Type t = o.GetType();  // We will work on type "t"
List<MemberInfo> members = new List<MemberInfo>();
members.AddRange(t.GetProperties(BindingFlags.Public | BindingFlags.GetProperty | BindingFlags.Instance);  // Get the public instance properties list
foreach (MemberInfo member in members)
{
    Type type = null;
    object value = null;
    PropertyInfo pi = (member as PropertyInfo);
    type = pi.PropertyType;
    if (type.IsSubclassOf(typeof(CollectionBase)))
        continue;  // Sorry
    if (pi.GetCustomAttributes(typeof(NotSerializedAttribute), true).GetLength(0) > 0)
        continue;
    if (!pi.CanRead || !pi.CanWrite)
        continue;
    value = pi.GetValue(o, null);
    // TODO Print out, or save the "value"
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文