Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/microsoft/WPF-Samples
Repository for WPF related samples
https://github.com/microsoft/WPF-Samples
Last synced: 2 days ago
JSON representation
Repository for WPF related samples
- Host: GitHub
- URL: https://github.com/microsoft/WPF-Samples
- Owner: microsoft
- License: mit
- Created: 2015-04-15T23:35:11.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T12:02:01.000Z (15 days ago)
- Last Synced: 2024-10-29T15:07:28.770Z (10 days ago)
- Language: C#
- Size: 23.3 MB
- Stars: 5,100
- Watchers: 326
- Forks: 3,200
- Open Issues: 70
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-wpf - WPF-Samples - Microsoft Repository for WPF related samples. (General)
README
# WPF-Samples
This repo contains the samples that demonstrate the API usage patterns and popular features for the Windows Presentation Foundation in the .NET for Desktop. These samples were initially hosted on [MSDN](https://msdn.microsoft.com/en-us/library/vstudio/ms771633.aspx), and we are gradually
moving all the interesting WPF samples over to GitHub. All the samples have been retargeted to [.NET 8.0](https://dotnet.microsoft.com/en-us/download).You can also find an archive of samples targeting .NET 4.7.2 in the [netframework](https://github.com/microsoft/WPF-Samples/tree/netframework) branch.
The samples in this repo are generally about illustrating specific concepts and may go against accessibility best practices. However, the team has spent some time illustrating accessibility best practices in a subset of these samples.
* [ExpenseItIntro](https://github.com/microsoft/WPF-Samples/tree/main/Getting%20Started/WalkthroughFirstWPFApp/csharp)
* [ExpenseItDemo](https://github.com/microsoft/WPF-Samples/tree/main/Sample%20Applications/ExpenseIt/ExpenseItDemo)
* [DataBindingDemo](https://github.com/microsoft/WPF-Samples/tree/main/Sample%20Applications/DataBindingDemo)
* [CustomComboBox](https://github.com/microsoft/WPF-Samples/tree/main/Sample%20Applications/CustomComboBox)
* [EditingExaminerDemo](https://github.com/microsoft/WPF-Samples/tree/main/Sample%20Applications/EditingExaminerDemo)For WPF samples using .NET Framework, visit [here](https://learn.microsoft.com/en-us/dotnet/desktop/wpf/wpf-samples?view=netframeworkdesktop-4.8).
## License
Unless otherwise mentioned, the samples are released under the [MIT license](https://github.com/Microsoft/WPF-Samples/blob/main/LICENSE)## Help us improve our samples
Help us improve out samples by sending us a pull-request or opening a [GitHub Issue](https://github.com/Microsoft/WPF-Samples/issues)Questions: mail [email protected]
## WPF development
# For .NET 8 - main branch
These samples require Visual Studio 2022(v17.8) to build, test, and deploy, and also require the most recent .NET 8 SDK.
[Get a free copy of Visual Studio 2022 Community Edition](https://www.visualstudio.com/wpf-vs)
[.NET 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
# For .NET 7
These samples require Visual Studio 2022(v17.7), Visual Studio 2022 for Mac (v17.6) to build, test, and deploy, and also require the .NET 7 SDK.
[Get a free copy of Visual Studio 2022 Community Edition](https://www.visualstudio.com/wpf-vs)
[.NET 7 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/7.0)
# For .NET 6
These samples require Visual Studio 2022(v17.2), Visual Studio 2022 for Mac (v17.6) to build, test, and deploy, and also require the .NET 6 SDK.
[Get a free copy of Visual Studio 2022 Community Edition](https://www.visualstudio.com/wpf-vs)
[.NET 6 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
WPF on .NET has been open-sourced, and is now available on [Github](https://github.com/dotnet/wpf)
## Using the samples
To use the samples with Git, clone the WPF-Samples repository with 'git clone https://github.com/microsoft/WPF-Samples'
After cloning the WPF-Samples respository, there will be two solution files in the root directory: WPF-Samples.sln and WPF-Samples.msbuild.sln
* To build the samples, open one of the solution files in Visual Studio 2022 and build the solution.
* Alternatively, navigate to the directory of a sample and build with 'dotnet build' or 'msbuild' specifying the target project file.
* WPF-Samples.msbuild.sln contains projects that can be built only with `msbuild` or Visual Studio, and will not compile with `dotnet build`. These projects contain C++ code, for which there is no support in `dotnet build`The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the [repo](https://github.com/microsoft/WPF-Samples?tab=readme-ov-file) page). You can then unzip the entire archive and use the samples in Visual Studio 2022.
[Download the samples ZIP](../../archive/main.zip)
**Notes:**
* Before you unzip the archive, right-click it, select Properties, and then select Unblock.
* Most samples should work independently
* By default, all the samples target .NET 8.0. (Installers for the .NET 8 SDK can be found at )For more info about the programming models, platforms, languages, and APIs demonstrated in these samples, please refer to the guidance available in [MSDN](https://msdn.microsoft.com/en-us/library/ms754130.aspx). These samples are provided as-is in order to indicate or demonstrate the functionality of the programming models and feature APIs for WPF.