以不同方式访问时 Windows 控件返回不同的值
我有一个 控件,托管在 < a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.design.designsurface.aspx" rel="nofollow noreferrer">DesignSurface。
当其 Location 属性由 control.Location
访问时,以及当由 propertyDescriptor.GetValue(control)
访问时,我会得到不同的值。
propertyDescriptor
的类型为 PropertyDescriptor。
有人有解决办法吗? 我已经检查过对象实例是否相同。
I have a control, hosted on DesignSurface.
When its Location property is accessed by control.Location
, and when it's accessed by propertyDescriptor.GetValue(control)
, I get different values.
propertyDescriptor
is of type PropertyDescriptor.
Does anyone have a solution to this? I have checked that the object instance is the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,这可能取决于对象。 以及你如何获得类型描述符。 例如,它可以是一个自定义描述符,可以返回任何内容。 如果是这种情况,您可以向 GetTypedescriptor 方法提供不使用自定义类型描述符的信息。
(抱歉没有发布实际代码,但我没有可用的 IDE,并且不记得确切的语法)。
另一种方法是使用 PropertyInfo 而不是 propertyDescriptor(如果代码的其余部分使用 System.Reflection.PropertyInfo)。
您可以获取 stype 字符串的属性长度的 PropertyInfo,如下所示
typeof(string).GetProperty("Length");
或者如果它是编译时未知的类型,如下所示:
obj.GetType().GetProperty("长度");
如果您需要循环遍历所有属性,请改为调用 GetProperties。
但所有 PropertyInfo 都依赖于我的猜测,即您可以使用 PropertyInfo 而不是 PropertyDescriptor
Well it might depend on the object. and how you got your type descriptor. E.g. it could be a custom descriptor which could return what ever. If that's the case you can give the GetTypedescriptor method information of not to use custom typedescriptors.
(sry for not posting the actual code but I don't have an IDE available and can't remember the exact syntax).
A different approach would be to ue a PropertyInfo instead of a propertyDescriptor (if the rest of the code works with a System.Reflection.PropertyInfo).
You can get the PropertyInfo of the Property Length for the stype string like this
typeof(string).GetProperty("Length");
or if it's an type unknown at compile time like this:
obj.GetType().GetProperty("Length");
if you need to loop through all properties call GetProperties instead.
But all that PropertyInfo relies on my guess that you'd be able to use PropertyInfo instead of PropertyDescriptor