Windows Forms look different in Powershell and Powershell ISE. Why?
I have written a script which is basically a small wys开发者_C百科iwyg signature generator for Outlook. We want our signatures to be in corporate colours, and semi-standardised - hence the requirement for this.
I did the development work in Powershell ISE and all looked good. However, when I run the script just using powershell (as the users will) it looks totally different:
Powershell vs Powershell ISE http://www.freeimagehosting.net/uploads/1d6e6c5c6f.png
The top one was generated in ISE, and looks as I want it. The bottom one was run from powershell directly and seems to have visually regressed five years!
How can I get the script to look as snazzy in Powershell as it does in Powershell ISE?
Add the following line in your script before you show the form:
[System.Windows.Forms.Application]::EnableVisualStyles();
精彩评论