本帖最后由 went 于 2022-9-23 23:38 编辑
powershell写GUI界面程序很方便,有WinForm和WPF两种方式
powershell强大的数据处理能力有了C#的WinForm加持,很容易开发出一些简单易用的GUI程序
写个小教程,方便喜欢写GUI程序的朋友使用,也当做个笔记
1.HelloWorld | | | | | [void][System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | | | | | | | | $mainFormWidth = 600 | | $mainFormHeight = 400 | | | | | | $form_main = New-Object "System.Windows.Forms.Form" | | $form_main.Width = $mainFormWidth | | $form_main.Height = $mainFormHeight | | $form_main.StartPosition = [System.Windows.Forms.FormStartPosition]::CenterScreen | | $form_main.Text = "Hello WinForm" | | | | | | $btn_test = New-Object "System.Windows.Forms.Button" | | $btn_test.Width = $mainFormWidth / 3 | | $btn_test.Height = $mainFormHeight / 3 | | $testBtnX = ($form_main.Width - $btn_test.Width) / 2 | | $testBtnY = ($form_main.Height - $btn_test.Height) / 2 | | $btn_test.Location = New-Object "System.Drawing.Point" $testBtnX,$testBtnY | | $btn_test.Text = "Hello World!" | | $form_main.Controls.Add($btn_test) | | | | | | | | | | $btn_test.add_Click({ | | | | [System.Windows.Forms.MessageBox]::Show("Hello World!","MessageBox",[System.Windows.Forms.MessageBoxButtons]::OK,[System.Windows.Forms.MessageBoxIcon]::Asterisk) | | | | Write-Host $this | | Write-Host $_ | | }) | | | | | | | | $form_main.ShowDialog() | | | | | | COPY |
#运行方法1: 代码存为 test.ps1,然后cmd执行 powershell -ExecutionPolicy Bypass "X:\...\test.ps1" ,其中 "X:\...\test.ps1" 是ps1文件的全路径
#运行方法2: 代码存为 test.bat,然后双击bat文件运行
高级玩法,初始化区添加以下脚本代码,隐藏cmd窗口 | | | [void][System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | | | | $code=@" | | using System; | | using System.Runtime.InteropServices; | | public static class GetApi{ | | [DllImport("user32.dll")] | | private static extern bool ShowWindow(IntPtr hWnd,uint showType); //声明 Windows API 函数 | | [DllImport("kernel32.dll")] | | private static extern IntPtr GetConsoleWindow(); //声明 Windows API 函数 | | public static bool ShowConsoleWindow(uint showType){ | | return ShowWindow(GetConsoleWindow(),showType); | | } | | } | | "@ | | Add-Type -TypeDefinition $code | | [GetApi]::ShowConsoleWindow(0)COPY |
附一个powershell写的mp3下载器,已修改支持win7,ps2.0 |