mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 22:55:52 -06:00
add button action
This commit is contained in:
parent
5b0ea0b373
commit
15c84f2a1f
@ -237,6 +237,11 @@ function Invoke-WPFUIElements {
|
|||||||
$button1.Content = $installIcon
|
$button1.Content = $installIcon
|
||||||
$buttonPanel.Children.Add($button1) | Out-Null
|
$buttonPanel.Children.Add($button1) | Out-Null
|
||||||
|
|
||||||
|
# Add Click event for the "Install" button
|
||||||
|
$button1.Add_Click({
|
||||||
|
Write-Host "Installing ..."
|
||||||
|
})
|
||||||
|
|
||||||
# Create the "Uninstall" button with the uninstall icon from Segoe MDL2 Assets
|
# Create the "Uninstall" button with the uninstall icon from Segoe MDL2 Assets
|
||||||
$button2 = New-Object Windows.Controls.Button
|
$button2 = New-Object Windows.Controls.Button
|
||||||
$button2.Width = 45
|
$button2.Width = 45
|
||||||
@ -254,6 +259,10 @@ function Invoke-WPFUIElements {
|
|||||||
$button2.Content = $uninstallIcon
|
$button2.Content = $uninstallIcon
|
||||||
$buttonPanel.Children.Add($button2) | Out-Null
|
$buttonPanel.Children.Add($button2) | Out-Null
|
||||||
|
|
||||||
|
$button2.Add_Click({
|
||||||
|
Write-Host "Uninstalling ..."
|
||||||
|
})
|
||||||
|
|
||||||
# Create the "Info" button with the info icon from Segoe MDL2 Assets
|
# Create the "Info" button with the info icon from Segoe MDL2 Assets
|
||||||
$infoButton = New-Object Windows.Controls.Button
|
$infoButton = New-Object Windows.Controls.Button
|
||||||
$infoButton.Width = 45
|
$infoButton.Width = 45
|
||||||
@ -272,6 +281,10 @@ function Invoke-WPFUIElements {
|
|||||||
$infoButton.Content = $infoIcon
|
$infoButton.Content = $infoIcon
|
||||||
$buttonPanel.Children.Add($infoButton) | Out-Null
|
$buttonPanel.Children.Add($infoButton) | Out-Null
|
||||||
|
|
||||||
|
$infoButton.Add_Click({
|
||||||
|
Write-Host "Getting info ..."
|
||||||
|
})
|
||||||
|
|
||||||
# Add the button panel to the DockPanel
|
# Add the button panel to the DockPanel
|
||||||
$dockPanel.Children.Add($buttonPanel) | Out-Null
|
$dockPanel.Children.Add($buttonPanel) | Out-Null
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user