An open API service indexing awesome lists of open source software.

https://github.com/robertoprevato/wpf-example


https://github.com/robertoprevato/wpf-example

Last synced: 7 months ago
JSON representation

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:).