https://github.com/robertoprevato/wpf-example
https://github.com/robertoprevato/wpf-example
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/robertoprevato/wpf-example
- Owner: RobertoPrevato
- Created: 2025-01-20T16:59:46.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-01-20T17:40:05.000Z (9 months ago)
- Last Synced: 2025-01-20T18:30:14.388Z (9 months ago)
- Language: C#
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WPF-example
Plain vanilla WPF example to navigate between user views.
In this example, `MainWindow.xaml` has this fragment:
```xml
```
and views are set dynamically using the `MainContentControl` property of the main window (see `AppManager.cs`).
This is a simple way that can be sufficient in small applications. For more complex scenarios,
consider the [MVVM Toolkit](https://learn.microsoft.com/en-us/dotnet/communitytoolkit/mvvm/)
(at your own risk :wink:).