主頁 > 知識庫 > Powershell使用WPF技術(shù)實現(xiàn)彈窗提示實例

Powershell使用WPF技術(shù)實現(xiàn)彈窗提示實例

熱門標(biāo)簽:電話機(jī)器人對家居行業(yè)幫助大嗎 地圖標(biāo)注審核周期 如何申請400的電話呀 蘭州電銷機(jī)器人加盟 電商外呼系統(tǒng)排名 黑暗之魂3地圖標(biāo)注 AI智能電銷機(jī)器人壞處 沈陽ai電銷智能機(jī)器人 合肥電銷外呼系統(tǒng)供應(yīng)商

WPF (Windows Presentation Foundation) 技術(shù)能讓你創(chuàng)建窗口和對話框。它的優(yōu)勢是在窗體設(shè)計時能與代碼分開。

這里有個簡單的顯示彈出消息練習(xí)。這個消息是定義在XAML代碼中它的實現(xiàn)類似HTML(但是請區(qū)分大小寫)。你能輕松的調(diào)整字體大小,內(nèi)容,顏色等等。不需要嵌入任何代碼。

復(fù)制代碼 代碼如下:

$xaml = @"
Window
 xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'>

 Border BorderThickness="20" BorderBrush="Yellow" CornerRadius="9" Background='Red'>
  StackPanel>
   Label FontSize="50" FontFamily='Stencil' Background='Red' Foreground='White' BorderThickness='0'>
    System will be rebooted in 15 minutes!
   /Label>

   Label HorizontalAlignment="Center" FontSize="15" FontFamily='Consolas' Background='Red' Foreground='White' BorderThickness='0'>
    Worried about losing data? Talk to your friendly help desk representative and freely share your concerns!
   /Label>
  /StackPanel>
 /Border>
/Window>
"@

$reader = [System.XML.XMLReader]::Create([System.IO.StringReader] $xaml)
$window = [System.Windows.Markup.XAMLReader]::Load($reader)
$Window.AllowsTransparency = $True
$window.SizeToContent = 'WidthAndHeight'
$window.ResizeMode = 'NoResize'
$Window.Opacity = .7
$window.Topmost = $true
$window.WindowStartupLocation = 'CenterScreen'
$window.WindowStyle = 'None'
# show message for 5 seconds:
$null = $window.Show()
Start-Sleep -Seconds 5
$window.Close()

您可能感興趣的文章:
  • 用WPF實現(xiàn)屏幕文字提示的實現(xiàn)方法
  • WPF氣泡提示框的簡單制作

標(biāo)簽:通遼 河北 隴南 淮南 河池 常州 黔南 黔南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Powershell使用WPF技術(shù)實現(xiàn)彈窗提示實例》,本文關(guān)鍵詞  Powershell,使用,WPF,技術(shù),實現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Powershell使用WPF技術(shù)實現(xiàn)彈窗提示實例》相關(guān)的同類信息!
  • 本頁收集關(guān)于Powershell使用WPF技術(shù)實現(xiàn)彈窗提示實例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章