使用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
相关推荐
zjx23884 天前
使用 PowerShell 脚本 + FFmpeg 在 Windows 系统中批量计算 MP4视频 文件的总时长
powershell
DogDaoDao4 天前
从零开始:Windows 系统中 PowerShell 配置 FFmpeg 的详细步骤
windows·ffmpeg·音视频·ffplay·powershell·视频直播·ffprobe
ddatalent10 天前
如何将maltab开发的app嵌入PPT中展示并且可实时互动
matlab·gui·ppt·web server·web browser·web viewer
长安er11 天前
异步编程与流水线架构:从理论到高并发
数学建模·架构·gui·多线程·异步·流水线·全息
笨笨D幸福1 个月前
wxWidgets GUI 跨平台 入门学习笔记
gui·wxwidgets·wx
三巧1 个月前
判断按键盘是否好使的开机自启动PowerShell脚本
计算机外设·powershell
rongjv1 个月前
[rustGUI][iced]基于rust的GUI库iced(0.13)的部件学习(06):基于iced实现一个简单的图片浏览器
rust·gui·iced
机构师1 个月前
<tauri><rust><GUI>基于tauri,实现websocket通讯程序(右键菜单、websocket)
开发语言·javascript·websocket·rust·gui·tauri
诚信爱国敬业友善1 个月前
GUI编程(window系统→Linux系统)
linux·python·gui