切换 StackPanel 并使之变灰

发布于 2024-10-17 10:46:11 字数 114 浏览 2 评论 0 原文

我正在尝试在大 StackPanel 之上切换小 StackPanel:当小 StackPanel 切换并显示可见时,背面的大 StackPanel 呈灰色且不透明。有谁知道如何使整个 StackPanel 变灰?

I am trying to toggle a small StackPanel on top of a large StackPanel: when the small StackPanel is toggled and show visible, the large StackPanel on the back is grey out with a opacity color. Does anyone know how can I grey out a whole StackPanel?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

心不设防 2024-10-24 10:46:11

您可以尝试禁用 StackPanel (stackPanel.IsEnabled = false;),然后该 StackPanel 的所有子级也将被禁用,这通常需要灰色控件的出现。

You could try to disable the StackPanel (stackPanel.IsEnabled = false;), then all children of that StackPanel will also be disabled which normally takes the apprearance of greyed out controls.

旧人 2024-10-24 10:46:11

HB 的答案在 Windows Phone 8.1 上不起作用 禁用控件的所有子级的一个简单方法是将控件包装在 然后您可以应用 <代码>MyControl.IsEnabled = false; 请参阅此处

H.B.'s answer does not work on Windows Phone 8.1 A simple way to disable all children of a control is to wrap your controls inside a <ContentControl x:Name="MyControl"> Then you can apply MyControl.IsEnabled = false; See here.

请止步禁区 2024-10-24 10:46:11

试试这个:

stackPanel.IsEnabled = false;

Try this:

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