在Show UI中锁定网格

时间:2012-10-19 15:37:01

标签: wpf powershell codeplex

任何人都可以帮助我如何在powershell中锁定showui模块中的网格吗?

我正在创建一个使用网格的应用程序

Grid -ControlName'Show-Demo'Columns Auto,* -Rows 9 -MinHeight 500 -MaxHeight 500 -MinWidth 500 -MaxWidth 500 {

} - 显示

当我运行这个我能够获得网格视图但是大小没有被锁定时,我仍然可以用我的鼠标调整网格大小,我想避免这种情况并将其永久锁定到MAX和MIN的高度和宽度500

1 个答案:

答案 0 :(得分:2)

网格已经是固定大小。尝试在网格上设置-Background Blue然后调整大小,你会看到我的意思。

你想要的是让 Window 不可调整大小。为此,您必须实际指定Window,而不是仅在网格上使用-Show:

Window { 
    Grid -ControlName 'Show-Demo' -Columns Auto,* -Rows 9 {
       ...
    }
}  -MinHeight 500 -MaxHeight 500 -MinWidth 500 -MaxWidth 500 -Show