使用powershell构建gui界面

使用powershell构建gui界面:

参考:

https://blog.csdn.net/gjmjack/article/details/124032293

c 复制代码
# Create a new button instance
 
$button1 = New-Object System.Windows.Forms.Button;
 
# Set button property
 
$button1.Location = New-Object System.Drawing.Point(257, 150);
$button1.Name = "button1";
$button1.Size = New-Object System.Drawing.Size(284, 103);
$button1.TabIndex = 0;
$button1.Text = "工作使我快乐";
$button1.UseVisualStyleBackColor = $true;

无法运行.ps1脚本(powershell脚本)处理办法:

参考:

https://blog.csdn.net/gao_zhennan/article/details/131719371

c 复制代码
Get-ExecutionPolicy -List
Set-ExecutionPolicy -ExecutionPolicy AllSigned CurrentUser
Get-ExecutionPolicy -List
相关推荐
超级大福宝6 天前
PowerShell 实现类似 Bash 的补全行为
bash·powershell
南岩亦凛汀10 天前
快速上手Ultimate++的编译链接和配置
c++·gui·开源框架
一只小bit10 天前
Qt 绘图核心教程:从基础绘制到图像操作全解析
前端·c++·qt·gui
小雪_Snow10 天前
PowerShell 版本升级教程
powershell
Whoami!12 天前
⓫⁄₅ ⟦ OSCP ⬖ 研记 ⟧ Windows权限提升 ➱ 利用PowerShell获取敏感信息
网络安全·信息安全·powershell·windows日志
小雪_Snow15 天前
PowerShell 修改编码为 UTF-8 教程
powershell
2401_8414956417 天前
【Python高级编程】单词统计与查找分析工具
数据结构·python·算法·gui·排序·单词统计·查找
CodeCraft Studio18 天前
从框架到体验:Qt + Qtitan 构建制造业嵌入式UI整体解决方案
开发语言·qt·ui·gui·嵌入式开发·hmi·制造业嵌入式ui
2401_8414956418 天前
【Python高级编程】学习通签到统计工具
python·pandas·gui·tkinter·pyinstaller·数据统计·exe程序
番茄灭世神19 天前
常见终端工具输出中文乱码的解决方案
bash·编码格式·powershell·终端工具