PowerShell中的Out-GridView:如何更改窗口的初始大小?

时间:2015-11-18 07:13:04

标签: powershell gridview

我经常使用PowerShell中的有用函数Out-GridView。有时我只在GridView中显示的数据很少,但每次都会在一个非常大的窗口中打开。是否有可能更改GridView窗口的初始大小?在1920x1080显示屏上几乎全屏的窗口中不应显示包含3列和4行的表格...

2 个答案:

答案 0 :(得分:2)

PowerShell是一种脚本语言,而不是一种GUI语言。通过使用Winforms或wpf,可以借助SAPIEN PowerShell Studio等工具创建GUI。

简而言之,我想要的是不可能的,因为它没有parameter

答案 1 :(得分:0)

我遇到了同样的问题,最终使用了这种自动调整大小的“解决方法”。

$null = [System.Reflection.Assembly]::LoadFile('C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\Microsoft.VisualBasic.dll')

$words = @"
    Line 1
    This is the line after line 1
    The third line contains the number 5.
"@

#if "words" is an array, change below to ($words | out-string)

[Microsoft.VisualBasic.Interaction]::MsgBox(($words),0, "Title")