mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 22:55:52 -06:00
Update 'Show-CustomDialog' Private Function
- Made a lot of theming/styling choices for Custom Dialogs exposed as parameters. - Update the documentation for these new parameters in 'Show-CustomDialog' Function. - Add a Link Hover Effect using 'Add_EVENT' methods (This can be tweaks/tuned-down if needed). - Made use of 'Title' Parameter for 'Show-CustomDialog' Function inside 'scripts/main.ps1' script, to change Dialog Window Title. - Now you can change the Logo Size of WinUtil through the 'LogoSize' Theming Option (the option was there, but not used in implementation).
This commit is contained in:
parent
46e457dde8
commit
15024434d9
@ -2,7 +2,7 @@
|
|||||||
"shared":{
|
"shared":{
|
||||||
"CustomDialogFontSize": "12",
|
"CustomDialogFontSize": "12",
|
||||||
"CustomDialogFontSizeHeader": "14",
|
"CustomDialogFontSizeHeader": "14",
|
||||||
"CustomDialogIconSize": "25",
|
"CustomDialogLogoSize": "25",
|
||||||
"CustomDialogWidth": "400",
|
"CustomDialogWidth": "400",
|
||||||
"CustomDialogHeight": "200",
|
"CustomDialogHeight": "200",
|
||||||
"FontSize": "12",
|
"FontSize": "12",
|
||||||
|
@ -6,6 +6,9 @@ function Show-CustomDialog {
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This function creates a custom dialog box with the specified message and additional elements such as an image, heading, and an OK button. The dialog box is designed with a green border, rounded corners, and a black background.
|
This function creates a custom dialog box with the specified message and additional elements such as an image, heading, and an OK button. The dialog box is designed with a green border, rounded corners, and a black background.
|
||||||
|
|
||||||
|
.PARAMETER Title
|
||||||
|
The Title to use for the dialog window's Title Bar, this will not be visible by the user, as window styling is set to None.
|
||||||
|
|
||||||
.PARAMETER Message
|
.PARAMETER Message
|
||||||
The message to be displayed in the dialog box.
|
The message to be displayed in the dialog box.
|
||||||
|
|
||||||
@ -16,60 +19,102 @@ function Show-CustomDialog {
|
|||||||
The height of the custom dialog window.
|
The height of the custom dialog window.
|
||||||
|
|
||||||
.PARAMETER FontSize
|
.PARAMETER FontSize
|
||||||
The Font Size for text shown inside the custom dialog window.
|
The Font Size of message shown inside custom dialog window.
|
||||||
|
|
||||||
.PARAMETER HeaderFontSize
|
.PARAMETER HeaderFontSize
|
||||||
The Font Size for the Header of the custom dialog window.
|
The Font Size for the Header of custom dialog window.
|
||||||
|
|
||||||
.PARAMETER IconSize
|
.PARAMETER LogoSize
|
||||||
The Size to use for Icon inside the custom dialog window.
|
The Size of the Logo used inside the custom dialog window.
|
||||||
|
|
||||||
|
.PARAMETER ForegroundColor
|
||||||
|
The Foreground Color of dialog window title & message.
|
||||||
|
|
||||||
|
.PARAMETER BackgroundColor
|
||||||
|
The Background Color of dialog window.
|
||||||
|
|
||||||
|
.PARAMETER BorderColor
|
||||||
|
The Color for dialog window border.
|
||||||
|
|
||||||
|
.PARAMETER ButtonBackgroundColor
|
||||||
|
The Background Color for Buttons in dialog window.
|
||||||
|
|
||||||
|
.PARAMETER ButtonForegroundColor
|
||||||
|
The Foreground Color for Buttons in dialog window.
|
||||||
|
|
||||||
|
.PARAMETER ShadowColor
|
||||||
|
The Color used when creating the Drop-down Shadow effect for dialog window.
|
||||||
|
|
||||||
|
.PARAMETER LogoColor
|
||||||
|
The Color of WinUtil Text found next to WinUtil's Logo inside dialog window.
|
||||||
|
|
||||||
|
.PARAMETER LinkForegroundColor
|
||||||
|
The Foreground Color for Links inside dialog window.
|
||||||
|
|
||||||
|
.PARAMETER LinkHoverForegroundColor
|
||||||
|
The Foreground Color for Links when the mouse pointer hovers over them inside dialog window.
|
||||||
|
|
||||||
.PARAMETER EnableScroll
|
.PARAMETER EnableScroll
|
||||||
A flag indicating whether to enable scrolling if the content exceeds the window size.
|
A flag indicating whether to enable scrolling if the content exceeds the window size.
|
||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Show-CustomDialog -Message "This is a custom dialog with a message and an image above." -Width 300 -Height 200
|
Show-CustomDialog -Title "My Custom Dialog" -Message "This is a custom dialog with a message and an image above." -Width 300 -Height 200
|
||||||
|
|
||||||
|
Makes a new Custom Dialog with the title 'My Custom Dialog' and a message 'This is a custom dialog with a message and an image above.', with dimensions of 300 by 200 pixels.
|
||||||
|
Other styling options are grabbed from '$sync.Form.Resources' global variable.
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
$foregroundColor = New-Object System.Windows.Media.SolidColorBrush("#0088e5")
|
||||||
|
$backgroundColor = New-Object System.Windows.Media.SolidColorBrush("#1e1e1e")
|
||||||
|
$linkForegroundColor = New-Object System.Windows.Media.SolidColorBrush("#0088e5")
|
||||||
|
$linkHoverForegroundColor = New-Object System.Windows.Media.SolidColorBrush("#005289")
|
||||||
|
Show-CustomDialog -Title "My Custom Dialog" -Message "This is a custom dialog with a message and an image above." -Width 300 -Height 200 -ForegroundColor $foregroundColor -BackgroundColor $backgroundColor -LinkForegroundColor $linkForegroundColor -LinkHoverForegroundColor $linkHoverForegroundColor
|
||||||
|
|
||||||
|
Makes a new Custom Dialog with the title 'My Custom Dialog' and a message 'This is a custom dialog with a message and an image above.', with dimensions of 300 by 200 pixels, with a link foreground (and general foreground) colors of '#0088e5', background color of '#1e1e1e', and Link Color on Hover of '005289', all of which are in Hexadecimal (the '#' Symbol is required by SolidColorBrush Constructor).
|
||||||
|
Other styling options are grabbed from '$sync.Form.Resources' global variable.
|
||||||
|
|
||||||
#>
|
#>
|
||||||
param(
|
param(
|
||||||
|
[string]$Title,
|
||||||
[string]$Message,
|
[string]$Message,
|
||||||
[int]$Width = $sync.Form.Resources.CustomDialogWidth,
|
[int]$Width = $sync.Form.Resources.CustomDialogWidth,
|
||||||
[int]$Height = $sync.Form.Resources.CustomDialogHeight,
|
[int]$Height = $sync.Form.Resources.CustomDialogHeight,
|
||||||
|
|
||||||
|
[System.Windows.Media.FontFamily]$FontFamily = $sync.Form.Resources.FontFamily,
|
||||||
[int]$FontSize = $sync.Form.Resources.CustomDialogFontSize,
|
[int]$FontSize = $sync.Form.Resources.CustomDialogFontSize,
|
||||||
[int]$HeaderFontSize = $sync.Form.Resources.CustomDialogFontSizeHeader,
|
[int]$HeaderFontSize = $sync.Form.Resources.CustomDialogFontSizeHeader,
|
||||||
[int]$IconSize = $sync.Form.Resources.CustomDialogLogoSize,
|
[int]$LogoSize = $sync.Form.Resources.CustomDialogLogoSize,
|
||||||
|
|
||||||
|
[System.Windows.Media.Color]$ShadowColor = "#AAAAAAAA",
|
||||||
|
[System.Windows.Media.SolidColorBrush]$LogoColor = $sync.Form.Resources.LabelboxForegroundColor,
|
||||||
|
[System.Windows.Media.SolidColorBrush]$BorderColor = $sync.Form.Resources.BorderColor,
|
||||||
|
[System.Windows.Media.SolidColorBrush]$ForegroundColor = $sync.Form.Resources.MainForegroundColor,
|
||||||
|
[System.Windows.Media.SolidColorBrush]$BackgroundColor = $sync.Form.Resources.MainBackgroundColor,
|
||||||
|
[System.Windows.Media.SolidColorBrush]$ButtonForegroundColor = $sync.Form.Resources.ButtonInstallForegroundColor,
|
||||||
|
[System.Windows.Media.SolidColorBrush]$ButtonBackgroundColor = $sync.Form.Resources.ButtonInstallBackgroundColor,
|
||||||
|
[System.Windows.Media.SolidColorBrush]$LinkForegroundColor = $sync.Form.Resources.LinkForegroundColor,
|
||||||
|
[System.Windows.Media.SolidColorBrush]$LinkHoverForegroundColor = $sync.Form.Resources.LinkHoverForegroundColor,
|
||||||
|
|
||||||
[bool]$EnableScroll = $false
|
[bool]$EnableScroll = $false
|
||||||
)
|
)
|
||||||
|
|
||||||
Add-Type -AssemblyName PresentationFramework
|
|
||||||
|
|
||||||
# Define theme colors
|
|
||||||
$foregroundColor = $sync.Form.Resources.MainForegroundColor
|
|
||||||
$backgroundColor = $sync.Form.Resources.MainBackgroundColor
|
|
||||||
$font = New-Object Windows.Media.FontFamily("Consolas")
|
|
||||||
$borderColor = $sync.Form.Resources.BorderColor # ButtonInstallBackgroundColor
|
|
||||||
$buttonBackgroundColor = $sync.Form.Resources.ButtonInstallBackgroundColor
|
|
||||||
$buttonForegroundColor = $sync.Form.Resources.ButtonInstallForegroundColor
|
|
||||||
$shadowColor = [Windows.Media.ColorConverter]::ConvertFromString("#AAAAAAAA")
|
|
||||||
$logocolor = $sync.Form.Resources.LabelboxForegroundColor
|
|
||||||
|
|
||||||
# Create a custom dialog window
|
# Create a custom dialog window
|
||||||
$dialog = New-Object Windows.Window
|
$dialog = New-Object Windows.Window
|
||||||
$dialog.Title = "About"
|
$dialog.Title = $Title
|
||||||
$dialog.Height = $Height
|
$dialog.Height = $Height
|
||||||
$dialog.Width = $Width
|
$dialog.Width = $Width
|
||||||
$dialog.Margin = New-Object Windows.Thickness(10) # Add margin to the entire dialog box
|
$dialog.Margin = New-Object Windows.Thickness(10) # Add margin to the entire dialog box
|
||||||
$dialog.WindowStyle = [Windows.WindowStyle]::None # Remove title bar and window controls
|
$dialog.WindowStyle = [Windows.WindowStyle]::None # Remove title bar and window controls
|
||||||
$dialog.ResizeMode = [Windows.ResizeMode]::NoResize # Disable resizing
|
$dialog.ResizeMode = [Windows.ResizeMode]::NoResize # Disable resizing
|
||||||
$dialog.WindowStartupLocation = [Windows.WindowStartupLocation]::CenterScreen # Center the window
|
$dialog.WindowStartupLocation = [Windows.WindowStartupLocation]::CenterScreen # Center the window
|
||||||
$dialog.Foreground = $foregroundColor
|
$dialog.Foreground = $ForegroundColor
|
||||||
$dialog.Background = $backgroundColor
|
$dialog.Background = $BackgroundColor
|
||||||
$dialog.FontFamily = $font
|
$dialog.FontFamily = $FontFamily
|
||||||
$dialog.FontSize = $FontSize
|
$dialog.FontSize = $FontSize
|
||||||
|
|
||||||
# Create a Border for the green edge with rounded corners
|
# Create a Border for the green edge with rounded corners
|
||||||
$border = New-Object Windows.Controls.Border
|
$border = New-Object Windows.Controls.Border
|
||||||
$border.BorderBrush = $borderColor
|
$border.BorderBrush = $BorderColor
|
||||||
$border.BorderThickness = New-Object Windows.Thickness(1) # Adjust border thickness as needed
|
$border.BorderThickness = New-Object Windows.Thickness(1) # Adjust border thickness as needed
|
||||||
$border.CornerRadius = New-Object Windows.CornerRadius(10) # Adjust the radius for rounded corners
|
$border.CornerRadius = New-Object Windows.CornerRadius(10) # Adjust the radius for rounded corners
|
||||||
|
|
||||||
@ -89,7 +134,7 @@ function Show-CustomDialog {
|
|||||||
$grid = New-Object Windows.Controls.Grid
|
$grid = New-Object Windows.Controls.Grid
|
||||||
$border.Child = $grid
|
$border.Child = $grid
|
||||||
|
|
||||||
# Add the following line to show gridlines
|
# Uncomment the following line to show gridlines
|
||||||
#$grid.ShowGridLines = $true
|
#$grid.ShowGridLines = $true
|
||||||
|
|
||||||
# Add the following line to set the background color of the grid
|
# Add the following line to set the background color of the grid
|
||||||
@ -102,7 +147,6 @@ function Show-CustomDialog {
|
|||||||
$border.HorizontalAlignment = [Windows.HorizontalAlignment]::Stretch
|
$border.HorizontalAlignment = [Windows.HorizontalAlignment]::Stretch
|
||||||
$border.VerticalAlignment = [Windows.VerticalAlignment]::Stretch
|
$border.VerticalAlignment = [Windows.VerticalAlignment]::Stretch
|
||||||
|
|
||||||
|
|
||||||
# Set up Row Definitions
|
# Set up Row Definitions
|
||||||
$row0 = New-Object Windows.Controls.RowDefinition
|
$row0 = New-Object Windows.Controls.RowDefinition
|
||||||
$row0.Height = [Windows.GridLength]::Auto
|
$row0.Height = [Windows.GridLength]::Auto
|
||||||
@ -129,17 +173,18 @@ function Show-CustomDialog {
|
|||||||
[Windows.Controls.Grid]::SetRow($stackPanel, 0) # Set the row to the second row (0-based index)
|
[Windows.Controls.Grid]::SetRow($stackPanel, 0) # Set the row to the second row (0-based index)
|
||||||
|
|
||||||
# Add SVG path to the stack panel
|
# Add SVG path to the stack panel
|
||||||
$stackPanel.Children.Add((Invoke-WinUtilAssets -Type "logo" -Size 25))
|
$stackPanel.Children.Add((Invoke-WinUtilAssets -Type "logo" -Size $LogoSize))
|
||||||
|
|
||||||
# Add "Winutil" text
|
# Add "Winutil" text
|
||||||
$winutilTextBlock = New-Object Windows.Controls.TextBlock
|
$winutilTextBlock = New-Object Windows.Controls.TextBlock
|
||||||
$winutilTextBlock.Text = "Winutil"
|
$winutilTextBlock.Text = "Winutil"
|
||||||
$winutilTextBlock.FontSize = $HeaderFontSize
|
$winutilTextBlock.FontSize = $HeaderFontSize
|
||||||
$winutilTextBlock.Foreground = $logocolor
|
$winutilTextBlock.Foreground = $LogoColor
|
||||||
$winutilTextBlock.Margin = New-Object Windows.Thickness(10, 10, 10, 5) # Add margins around the text block
|
$winutilTextBlock.Margin = New-Object Windows.Thickness(10, 10, 10, 5) # Add margins around the text block
|
||||||
$stackPanel.Children.Add($winutilTextBlock)
|
$stackPanel.Children.Add($winutilTextBlock)
|
||||||
# Add TextBlock for information with text wrapping and margins
|
# Add TextBlock for information with text wrapping and margins
|
||||||
$messageTextBlock = New-Object Windows.Controls.TextBlock
|
$messageTextBlock = New-Object Windows.Controls.TextBlock
|
||||||
|
$messageTextBlock.FontSize = $FontSize
|
||||||
$messageTextBlock.TextWrapping = [Windows.TextWrapping]::Wrap # Enable text wrapping
|
$messageTextBlock.TextWrapping = [Windows.TextWrapping]::Wrap # Enable text wrapping
|
||||||
$messageTextBlock.HorizontalAlignment = [Windows.HorizontalAlignment]::Left
|
$messageTextBlock.HorizontalAlignment = [Windows.HorizontalAlignment]::Left
|
||||||
$messageTextBlock.VerticalAlignment = [Windows.VerticalAlignment]::Top
|
$messageTextBlock.VerticalAlignment = [Windows.VerticalAlignment]::Top
|
||||||
@ -162,7 +207,7 @@ function Show-CustomDialog {
|
|||||||
$hyperlink.NavigateUri = New-Object System.Uri($match.Groups[1].Value)
|
$hyperlink.NavigateUri = New-Object System.Uri($match.Groups[1].Value)
|
||||||
$hyperlink.Inlines.Add($match.Groups[2].Value)
|
$hyperlink.Inlines.Add($match.Groups[2].Value)
|
||||||
$hyperlink.TextDecorations = [Windows.TextDecorations]::None # Remove underline
|
$hyperlink.TextDecorations = [Windows.TextDecorations]::None # Remove underline
|
||||||
$hyperlink.Foreground = $sync.Form.Resources.LinkForegroundColor
|
$hyperlink.Foreground = $LinkForegroundColor
|
||||||
|
|
||||||
$hyperlink.Add_Click({
|
$hyperlink.Add_Click({
|
||||||
param($sender, $args)
|
param($sender, $args)
|
||||||
@ -170,11 +215,15 @@ function Show-CustomDialog {
|
|||||||
})
|
})
|
||||||
$hyperlink.Add_MouseEnter({
|
$hyperlink.Add_MouseEnter({
|
||||||
param($sender, $args)
|
param($sender, $args)
|
||||||
$sender.Foreground = $sync.Form.Resources.LinkHoverForegroundColor
|
$sender.Foreground = $LinkHoverForegroundColor
|
||||||
|
$sender.FontSize = ($FontSize + ($FontSize / 4))
|
||||||
|
$sender.FontWeight = "SemiBold"
|
||||||
})
|
})
|
||||||
$hyperlink.Add_MouseLeave({
|
$hyperlink.Add_MouseLeave({
|
||||||
param($sender, $args)
|
param($sender, $args)
|
||||||
$sender.Foreground = $sync.Form.Resources.LinkForegroundColor
|
$sender.Foreground = $LinkForegroundColor
|
||||||
|
$sender.FontSize = $FontSize
|
||||||
|
$sender.FontWeight = "Normal"
|
||||||
})
|
})
|
||||||
|
|
||||||
$messageTextBlock.Inlines.Add($hyperlink)
|
$messageTextBlock.Inlines.Add($hyperlink)
|
||||||
@ -218,7 +267,7 @@ function Show-CustomDialog {
|
|||||||
$okButton.Margin = New-Object Windows.Thickness(0, 0, 0, 10)
|
$okButton.Margin = New-Object Windows.Thickness(0, 0, 0, 10)
|
||||||
$okButton.Background = $buttonBackgroundColor
|
$okButton.Background = $buttonBackgroundColor
|
||||||
$okButton.Foreground = $buttonForegroundColor
|
$okButton.Foreground = $buttonForegroundColor
|
||||||
$okButton.BorderBrush = $borderColor
|
$okButton.BorderBrush = $BorderColor
|
||||||
$okButton.Add_Click({
|
$okButton.Add_Click({
|
||||||
$dialog.Close()
|
$dialog.Close()
|
||||||
})
|
})
|
||||||
|
@ -596,7 +596,7 @@ GitHub : <a href="https://github.com/ChrisTitusTech/winutil">ChrisTitusTech/wi
|
|||||||
Version : <a href="https://github.com/ChrisTitusTech/winutil/releases/tag/$($sync.version)">$($sync.version)</a>
|
Version : <a href="https://github.com/ChrisTitusTech/winutil/releases/tag/$($sync.version)">$($sync.version)</a>
|
||||||
"@
|
"@
|
||||||
|
|
||||||
Show-CustomDialog -Message $authorInfo
|
Show-CustomDialog -Title "About" -Message $authorInfo
|
||||||
})
|
})
|
||||||
|
|
||||||
$sync["SponsorMenuItem"].Add_Click({
|
$sync["SponsorMenuItem"].Add_Click({
|
||||||
@ -619,7 +619,7 @@ $sync["SponsorMenuItem"].Add_Click({
|
|||||||
$authorInfo += "An error occurred while fetching or processing the sponsors: $_`n"
|
$authorInfo += "An error occurred while fetching or processing the sponsors: $_`n"
|
||||||
}
|
}
|
||||||
|
|
||||||
Show-CustomDialog -Message $authorInfo -EnableScroll $true
|
Show-CustomDialog -Title "Sponsors" -Message $authorInfo -EnableScroll $true
|
||||||
})
|
})
|
||||||
|
|
||||||
$sync["Form"].ShowDialog() | out-null
|
$sync["Form"].ShowDialog() | out-null
|
||||||
|
Loading…
Reference in New Issue
Block a user