@@ -81,8 +81,8 @@ SOFTWARE.
8181 FileName: Designer.ps1
8282 Modified: Brandon Cunningham
8383 Created On: 1/15/2020
84- Last Updated: 5/8 /2025
85- Version: 2.7.6
84+ Last Updated: 5/9 /2025
85+ Version: 2.7.7
8686 ===========================================================================
8787
8888 . DESCRIPTION
@@ -492,10 +492,18 @@ SOFTWARE.
492492 2.7.5 5/5/2025
493493 Fixed #30 I found an error here. Thake a lokk tnx
494494 Fixed #31 [int] instead of [System.IntPtr] correction
495-
495+
496496 2.7.6 5/8/2025
497497 Fixed Debugging not working in powershell 7+ #29
498498
499+ 2.7.7 5/9/2026
500+ Fixed #37 Recent change broke module load. Bad publish
501+ Fixed #36 Hotkey Issue [string]$ModifierVirtualKeys
502+ Fixed #35 Add-CommonControl dependency needed for Add-Hotkey
503+ Partial fix of #34 Add alias's for VDS (DialogShell) compatibility
504+ Fixed #32 Problem loading values that are notated by % after saving, attibutes like 'Opacity'
505+
506+
499507BASIC MODIFICATIONS License
500508Original available at https://www.pswinformscreator.com/ for deeper comparison.
501509
@@ -590,6 +598,10 @@ SOFTWARE.
590598 $objRef.Changes [$controlName ] = @ {}
591599 }
592600 if ($null -ne $ ($newControl .$ ($_.ToString ()))){
601+ if ($_.ToString () -eq ' Opacity' ){
602+ $n = $_.Value.split (' %' )
603+ $_.Value = " $ ( $n [0 ]/ 100 ) "
604+ }
593605 if ($_.ToString () -eq ' Size' ){
594606 $n = $_.Value.split (' ,' )
595607 $n [0 ] = [math ]::Round(($n [0 ]/ 1 ) * $ctscale )
0 commit comments