gpt4 book ai didi

.net - 如何自动展开 PropertyGrid 中的 ExpandableObjectConverter 对象?

转载 作者:行者123 更新时间:2023-12-01 06:46:56 27 4
gpt4 key购买 nike

我有一个 .net PropertyGrid。我选择要查看的对象,该对象的一个​​属性是 Vector3。我可以使用 ExpandableObjectConverter 自动将 Vector3 的属性公开到 PropertyGrid 中。一切都很好,除了选择对象时,我希望 Vector3 默认展开,也就是说,您无需单击 [+] 即可看到 X、Y 和 Z。我怎样才能做到这一点?

// Managed C++ :
[TypeConverter(ExpandableObjectConverter::typeid)]
public ref struct Vector3
{
Vector3(float _x, float _y, float _z)
: x(_x)
, y(_y)
, z(_z)
{}

float x, y, z;

property float X
{
float get() { return x; }
}
property float Y
{
float get() { return y; }
}
property float Z
{
float get() { return z; }
}
};

最佳答案

答案基本上在这里提供:
Expand C# propertygrid on show

只需进行一些小的更改即可找到特定的属性而不是类别。

关于.net - 如何自动展开 PropertyGrid 中的 ExpandableObjectConverter 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4086245/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com