我可以使用反射访问 ItemsControl 的 ItemsHost 吗?
我正在创建派生自 DataGrid
的自定义 ItemsControl
。我需要访问 ItemsHost,它是实际保存 DataGrid 行的 Panel
。我见过一些丑陋的技巧来做到这一点,但我认为它们比使用反射更糟糕。 那么我可以使用反射访问 ItemsHost 吗?又如何呢?
I'm creating custom ItemsControl
that is derived from DataGrid
. I need to access ItemsHost that is the Panel
that actually holds rows of DataGrid
. I have seen som ugly tricks to do that but I consider them worse then using reflection.
So can I access ItemsHost using reflection ? And how ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,我可以。这很简单 - 我刚刚在继承自
DataGrid
的类中创建了属性:它就像一个魅力:)。我可以获得
ItemsControl
类的ItemsHost
内部属性的值。这样我就可以访问任何不受保护的属性。Yes I can. It is simple - I've just created property in class inheriting from
DataGrid
:It works like a charm :). I can get the value of
ItemsHost
internal property of theItemsControl
class. This way I can access any non-protected properties.如果您喜欢 @rasto 的回答,但您担心反射的性能,则此实现使用 表达式树 创建强类型 <代码>功能。您只需承担一次反射成本。您还可以将其包装在一个方便的扩展方法中......
If you're a fan of @rasto's answer, but you're concerned about the performance of reflection, this implementation uses expression trees to create a strongly typed
Func<ItemsControl, Panel>
. You incur the reflection cost only once. You can also wrap it up in a handy extension method...