PowerShell 選択肢GUI表示
8717 ワード
■概要
■環境
- Windows 8.1 / PowerShell 4.0
- Windows 10 / PowerShell 7.0
■コード
Add-Type -AssemblyName PresentationFramework
# 画面定義
[xml]$xaml = @'
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="選択"
Width="300" Height="200" ResizeMode="Noresize">
<Window.Resources>
<!-- 共通スタイル定義 -->
<Style TargetType="RadioButton">
<Setter Property="Margin" Value="5"/>
</Style>
<Style TargetType="Button">
<Setter Property="Margin" Value="10"/>
<Setter Property="Width" Value="100"/>
</Style>
</Window.Resources>
<Grid FocusManager.FocusedElement="{Binding ElementName=firstRadio}">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel Name="radiosContainer">
<TextBlock Text="以下の選択肢から好きな果物を選択してください。" Margin="5"/>
<RadioButton Content="リンゴ" Name="firstRadio" IsChecked="True"/>
<RadioButton Content="キウイ"/>
<RadioButton Content="パイナップル"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Grid.Row="1">
<Button Content="OK" Name="okBtn" IsDefault="True"/>
<Button Content="キャンセル" Name="cancelBtn" IsCancel="True"/>
</StackPanel>
</Grid>
</Window>
'@
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
$window = [Windows.Markup.XamlReader]::Load($reader)
$radios = $window.FindName('radiosContainer')
$okBtn = $window.FindName('okBtn')
$cancelBtn = $window.FindName('cancelBtn')
[string]$script:selectedRadio = ''
# OKボタン押下時の処理
$okBtn.add_Click.Invoke({
foreach ($item in $radios.Children) {
if ([string]$item.GetType() -ne 'System.Windows.Controls.RadioButton') {
continue
}
if ($item.IsChecked) {
# 選択されたラジオボタンのContentを保存
$script:selectedRadio = $item.Content
break
}
}
# ウィンドウを閉じる
$window.Close()
})
# キャンセルボタン押下時の処理
$cancelBtn.add_Click.Invoke({
# ウィンドウを閉じる
$window.Close()
})
# ウィンドウ表示
$window.ShowDialog() > $null
# 結果表示
if ($selectedRadio) {
Write-Host "${selectedRadio}が選択されました。"
} else {
Write-Host "キャンセルされました。"
}
■実行イメージ
Add-Type -AssemblyName PresentationFramework
# 画面定義
[xml]$xaml = @'
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="選択"
Width="300" Height="200" ResizeMode="Noresize">
<Window.Resources>
<!-- 共通スタイル定義 -->
<Style TargetType="RadioButton">
<Setter Property="Margin" Value="5"/>
</Style>
<Style TargetType="Button">
<Setter Property="Margin" Value="10"/>
<Setter Property="Width" Value="100"/>
</Style>
</Window.Resources>
<Grid FocusManager.FocusedElement="{Binding ElementName=firstRadio}">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel Name="radiosContainer">
<TextBlock Text="以下の選択肢から好きな果物を選択してください。" Margin="5"/>
<RadioButton Content="リンゴ" Name="firstRadio" IsChecked="True"/>
<RadioButton Content="キウイ"/>
<RadioButton Content="パイナップル"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Grid.Row="1">
<Button Content="OK" Name="okBtn" IsDefault="True"/>
<Button Content="キャンセル" Name="cancelBtn" IsCancel="True"/>
</StackPanel>
</Grid>
</Window>
'@
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
$window = [Windows.Markup.XamlReader]::Load($reader)
$radios = $window.FindName('radiosContainer')
$okBtn = $window.FindName('okBtn')
$cancelBtn = $window.FindName('cancelBtn')
[string]$script:selectedRadio = ''
# OKボタン押下時の処理
$okBtn.add_Click.Invoke({
foreach ($item in $radios.Children) {
if ([string]$item.GetType() -ne 'System.Windows.Controls.RadioButton') {
continue
}
if ($item.IsChecked) {
# 選択されたラジオボタンのContentを保存
$script:selectedRadio = $item.Content
break
}
}
# ウィンドウを閉じる
$window.Close()
})
# キャンセルボタン押下時の処理
$cancelBtn.add_Click.Invoke({
# ウィンドウを閉じる
$window.Close()
})
# ウィンドウ表示
$window.ShowDialog() > $null
# 結果表示
if ($selectedRadio) {
Write-Host "${selectedRadio}が選択されました。"
} else {
Write-Host "キャンセルされました。"
}
■実行イメージ
ラジオボタンを選択し、OKボタンを押すと選択したものが表示される。
■補足
CUIでやる場合は$Host.UI.PromptForChoice
Author And Source
この問題について(PowerShell 選択肢GUI表示), 我々は、より多くの情報をここで見つけました https://qiita.com/Kosen-amai/items/e23664024aa2f9567970著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .