如何在数据网格标题中显示或隐藏按钮?

发布于 2024-11-06 22:06:59 字数 585 浏览 0 评论 0原文

我正在开发 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 技术交流群。

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

发布评论

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

评论(1

酒儿 2024-11-13 22:06:59

您可以在代码后面使用以下语句启用数据网格标题中的按钮

accordiocntl.SelectionMode = AccordionSelectionMode.ZeroOrOne;

您可以参考链接 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

accordiocntl.SelectionMode = AccordionSelectionMode.ZeroOrOne;

You can refer the link https://forums.silverlight.net/forums/p/134010/301229.aspx for more details

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文