如何在数据网格标题中显示或隐藏按钮?
我正在开发 silverlight 应用程序。我是 silverlight 4 的新手。我在手风琴控件中使用以下链接作为参考
http://forums.silverlight.net/forums/p/166937/376318.aspx
在上面的 AccordionItem.Header 链接中,我可以显示或隐藏按钮控件,但无法处理代码后面的按钮控件上的单击事件。所以我在代码中使用了 AccordionItem.HeaderTemplate 。我的标题控件中有 4 个按钮。我可以使用上面的链接显示和隐藏按钮。使用 HeaderTemplate,我可以在后面的代码中处理按钮控件上的单击事件。使用 HeaderTemplate,我无法访问后面代码中放置在 HeaderTemplate 内的按钮控件。我收到 NullReferenceException 错误“对象引用未设置到对象的实例” 如何解决上述问题?您能否向我提供任何代码或链接,通过它们我可以访问放置在代码后面的 HeaderTemplate 内的控件?如果我做错了什么,请指导我。
I am developing the silverlight application. I am new to the silverlight 4. I am using the following link for reference in my accordion control
http://forums.silverlight.net/forums/p/166937/376318.aspx
In the above link with AccordionItem.Header I am able to show or hide the button control but I am not able to handle the click event on the button control in code behind. So I have used the AccordionItem.HeaderTemplate in my code. I have 4 buttons in my header control. I am able to show and hide the button by using the above link. With HeaderTemplate I am able to handle the click event on the button control in code behind. With HeaderTemplate I am not able to access the button control placed inside HeaderTemplate in code behind. I am getting the NullReferenceException error "The Object reference not set to an instance of the object" How to resolve the above issue ? Can you please provide me any code or link through which I can access the control placed inside the HeaderTemplate in code behind ? If I am doing anything wrong then please guide me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在代码后面使用以下语句启用数据网格标题中的按钮
您可以参考链接 https://forums.silverlight.net/forums/p/134010/301229.aspx了解更多详情
You can enable the button in the header of datagrid with the following statement in code behind
You can refer the link https://forums.silverlight.net/forums/p/134010/301229.aspx for more details