如何在主 Silverlight 控件上隐藏和显示 silverlight 用户控件?
我在 asp.net 网站中有一个名为 MainPage.xaml 的主要 silverlight 控件。
我想在运行时动态添加和删除控制。
所以, 我创建了另一个控件 Top10.xaml 并添加到 MainPage.xaml 上的选定画布区域,如本 page(Click Me):
现在我需要在 MainPage.xaml 中动态修改 Top10 可见性使用 MainPage.xaml.cs 中的 C# 代码单击 MainPage.xaml 上的按钮。
有人可以帮我吗?
谢谢
I have a main silverlight control named MainPage.xaml in an asp.net web site.
I want to dynamically add and remove control at run time.
So,
I have created another control Top10.xaml and added to selected canvas area on MainPage.xaml as described on this page(Click Me):
Now i need to modify Top10 visibility in MainPage.xaml dynamically when a button is clicked on MainPage.xaml using C# code in MainPage.xaml.cs.
Can anybody help me out?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了实现可编程性,您可能想为您在 xaml 中声明的控件设置一个 id。
你可以说 x:Name="top10" 或类似的内容。
在按钮的点击事件上,您可以使用下面的代码
希望这有帮助。
for programmability you might wanna set an id for the control u declare in xaml.
you could say x:Name="top10" or something similar.
on the click event of the button you could use the code below
Hope this helps.