我在我的 silverlight 页面中使用 silverlight 我想禁用所有控件。
我想禁用整个页面而不是禁用单个控件。
答案来了。。
<ContentControl x:Name="GroupOfControls" >
<Grid x:Name="LayoutRoot" Background="White">
'Design your own controls
</Grid>
</ContentControl>
将您的 Grid 插入内容控件,然后您可以启用或禁用 silverlight 页面上的所有控件
GroupOfControls.IsEnabled = False
GroupOfControls.IsEnabled = True
IsEnabled
将父控件的属性设置为 false 应该禁用子控件。
http://msdn.microsoft.com/en-us/library/system.windows.controls.control.isenabled(v=vs.95).aspx