https://github.com/lazywinadmin/wpfps
PowerShell module to interact with Windows Presentation Foundation (or WPF) controls.
https://github.com/lazywinadmin/wpfps
powershell wpf
Last synced: 7 months ago
JSON representation
PowerShell module to interact with Windows Presentation Foundation (or WPF) controls.
- Host: GitHub
- URL: https://github.com/lazywinadmin/wpfps
- Owner: lazywinadmin
- License: mit
- Created: 2016-02-26T03:49:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-10T12:11:24.000Z (over 1 year ago)
- Last Synced: 2024-05-02T01:54:04.942Z (about 1 year ago)
- Topics: powershell, wpf
- Language: PowerShell
- Homepage:
- Size: 380 KB
- Stars: 21
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# WPFPS
The WPFPS powershell module allows you to interact with Windows Presentation Foundation (WPF) controls.
If you are among those creating complexe/advanced PowerShell Graphical User Interface, you will realize the need for functions to interact with the different Controls.
If your need is only to create simple GUI, without too many controls you might want to take a look at [ShowUI](https://showui.codeplex.com/).
## Installation
#### Download from PowerShell Gallery
```powershell
Install-Module -Name WPFPS
```
#### Download from GitHub repository* Download the repository
* Unblock the zip file
* Extract the folder to a module path (e.g. $home\Documents\WindowsPowerShell\Modules)## Usage
```powershell
# Import the module.
Import-Module -Name WPFPS# Get the commands available
Get-Command -Module WPFPS# Get help
Get-Help Get-WPFForm
```## Help !!
Would love contributors, suggestions, feedback, and other help! Feel free to open an Issue## Examples
[Some example here](https://github.com/lazywinadmin/WPFPS/tree/master/Examples)

## More Information
## Resources
* [WPF Samples(Microsoft's github repo)](https://github.com/Microsoft/WPF-Samples/)
* [WPFTutorials.net](http://www.wpftutorial.net/)
* [WPF-Tutorial.com](http://www.wpf-tutorial.com/)
* [Code Project - WPF Controls](http://www.codeproject.com/KB/WPF/#Controls)## Notes
* Credit to Chad Miller for Out-Datatable private function