├── DPI Scaling.txt ├── Designer.fbs ├── Designer ├── Designer.ps1 ├── Events.ps1 └── Finds.txt ├── Examples ├── WPF Window Fuse.fbs ├── WPF Window Fuse │ ├── Events.ps1 │ ├── Finds.txt │ └── WPF Window Fuse.ps1 ├── Window Spy.fbs ├── Window Spy │ ├── Events.ps1 │ ├── Finds.txt │ └── Window Spy.ps1 ├── XAMLPad Express.fbs └── XAMLPad Express │ ├── Events.ps1 │ ├── Finds.txt │ └── XAMLPad Express.ps1 ├── FastColoredTextBox.dll ├── FastColoredTextBoxLicense.txt ├── PSGetModuleInfo.xml ├── README.md ├── WinFormsCreatorLicense.txt ├── famfamfam.md ├── functions ├── Dependencies.ps1 └── functions.psm1 ├── license.md ├── powershell-designer.nuspec ├── powershell-designer.psd1 └── powershell-designer.psm1 /DPI Scaling.txt: -------------------------------------------------------------------------------- 1 | For simple projects, add 'DPIAware' to the Tag property on the Form to attempt a scaling fix on high resolution displays. 2 | You may have to multiply resize event values by $ctscale (height, width, top, left or size[] location[]). 3 | Sometimes the export does not include a 'Size' properly in the XML if the control has not been resized. Resize all controls by at least one pixel. 4 | To enable VisualStyle, add 'VisualStyle' to the Tag property on the Form. 5 | See Calc.fbs for an example. 6 | 7 | Tags are comma seperated. -------------------------------------------------------------------------------- /Designer.fbs: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |