中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

WPF+PowerShell制作單機版應用

發布時間:2020-07-04 04:58:23 來源:網絡 閱讀:3808 作者:tliursc 欄目:系統運維

我接觸到的PowerShell GUI化工具制作有三種方式
一.Web-------------B/S架構
二.WPF------------C/S架構
三.WinForm-------C/S架構

一.Web
詳見我的另一篇 https://blog.51cto.com/640006/2059918

二.WPF
WPF介紹,可以參考 http://liutiemeng.blog.51cto.com/120361/91631/
簡單說就是用來做GUI的,用的XAML,支持數據綁定。而XAML本質上就是XML,
PowerShell可以很方便的操作XML對象,這樣就能實現PowerShell和WPF結合。國外有不少這方面的帖子,不過很多都比較老,不再更新了。
https://foxdeploy.com/series/learning-gui-toolmaking-series/ 上有很詳細的PowerShell+WPF的說明和介紹。最近的更新還加入了多線程。里面也有WinForm的教程。
簡單總結下就是:
1.在vs studio下用XAML做好GUI界面。

2.把XAML代碼直接粘貼到下面PowerShell代碼的@""@里,或者XAML另存為一個文件,然后在PowerShell代碼里用Get-Content加載進來也可以。

3.下面是用PowerShell操作XAML的代碼,foxdeploy已經寫好的模板,直接拿來用就行。這里面沒寫事件控制,具體的看foxdeploy博客吧,和WinForm的一樣。

#ERASE ALL THIS AND PUT XAML BELOW between the @" "@
$inputXML = @"
<Window x:Class="Azure.Window1" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    xmlns:local="clr-namespace:Azure" 
    mc:Ignorable="d" 
    Title="iVision Azure Accelerator" 
    Height="524.256" Width="332.076">
    <Grid Margin="0,0,174,0">
    </Grid>
</Window>
"@       

$inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N'  -replace '^<Win.*', '<Window'

[void][System.Reflection.Assembly]::LoadWithPartialName('presentationframework')
[xml]$XAML = $inputXML
#Read XAML

    $reader=(New-Object System.Xml.XmlNodeReader $xaml)
try{$Form=[Windows.Markup.XamlReader]::Load( $reader )}
catch{Write-Warning "Unable to parse XML, with error: $($Error[0])`n Ensure that there are NO SelectionChanged properties (PowerShell cannot process them)"
    throw}

#===========================================================================
# Load XAML Objects In PowerShell
#===========================================================================

$xaml.SelectNodes("http://*[@Name]") | %{"trying item $($_.Name)";
    try {Set-Variable -Name "WPF$($_.Name)" -Value $Form.FindName($_.Name) -ErrorAction Stop}
    catch{throw}
    }

Function Get-FormVariables{
if ($global:ReadmeDisplay -ne $true){Write-host "If you need to reference this display again, run Get-FormVariables" -ForegroundColor Yellow;$global:ReadmeDisplay=$true}
write-host "Found the following interactable elements from our form" -ForegroundColor Cyan
get-variable WPF*
}

Get-FormVariables

#===========================================================================
# Actually make the objects work
#===========================================================================

#Sample entry of how to add data to a field

#$vmpicklistView.items.Add([pscustomobject]@{'VMName'=($_).Name;Status=$_.Status;Other="Yes"})

#===========================================================================
# Shows the form
#===========================================================================
write-host "To show the form, run the following" -ForegroundColor Cyan
'$Form.ShowDialog() | out-null'
$Form.ShowDialog() | out-null

4.運行powershell腳本文件就可以了
上個圖,這個是參考彪鍋的WinForm版的樣子做的
WPF+PowerShell制作單機版應用

5.記得VS studio的這個插件PowerShell Tools Pro,可以直接在VS studio中進行PowerShell+WPF的開發,原理和上面都是一樣的,只不過是封裝了很多的函數。

三.WinForm
WinForm是微軟舊的GUI技術。和PowerShell結合方面與WPF很類似,只不過GUI不是用XAML來寫。最簡單的方法就是用Powershell Studio這個工具來做,看名字就知道了,專門用于PowerShell圖形化工具制作用的。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙游县| 滕州市| 金寨县| 呈贡县| 广安市| 济阳县| 历史| 河南省| 日喀则市| 阳城县| 台州市| 通江县| 台湾省| 密云县| 利辛县| 锡林郭勒盟| 林芝县| 富民县| 崇州市| 宜都市| 孝感市| 阜宁县| 化德县| 新营市| 岫岩| 宁南县| 烟台市| 辉南县| 拉萨市| 乐昌市| 白城市| 达尔| 益阳市| 乌审旗| 阿克苏市| 兰溪市| 红原县| 卓资县| 福鼎市| 平果县| 兴文县|