如何在主 Silverlight 控件上隐藏和显示 silverlight 用户控件?

发布于 2024-10-08 21:51:24 字数 439 浏览 2 评论 0原文

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

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

发布评论

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

评论(1

未蓝澄海的烟 2024-10-15 21:51:24

为了实现可编程性,您可能想为您在 xaml 中声明的控件设置一个 id。
你可以说 x:Name="top10" 或类似的内容。

在按钮的点击事件上,您可以使用下面的代码

top10.Visibility = Visibility.Collapsed; // to hide
top10.Visibility = Visibility.Visible; // to show

希望这有帮助。

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

top10.Visibility = Visibility.Collapsed; // to hide
top10.Visibility = Visibility.Visible; // to show

Hope this helps.

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