Articles
Every article Ever Garden has grown, newest first. Narrow them down by topic, tag or a search.
C# Prism Template Pack Code Snippets (Visual Studio Code)
Visual Studio Code snippets for C# Prism Template Pack.
#csharp#prism#vscodeC# | How to call a MainWindow method from a partial View in WPF Prism
In WPF Prism, you can call a method on the Main Window from a partial view. Using Prism's Event Aggregator avoids direct references between view models and makes it easy to handle events raised within the application.
#csharp#wpf#prismC# | How to call a View method in ContentRegion from MainWindow in WPF Prism
In WPF Prism, an application may consist of a main window and a set of regions contained within it, hosting views and view models that communicate with each other. This explains how to call a method on a view or view model in the Content Region from the Main Window.
#csharp#wpf#prismC# | How to implement video (MediaElement) in WPF Prism using the MVVM pattern
How to implement video playback (MediaElement.Play()) in WPF Prism using the MVVM pattern.
#csharp#wpf#prismC# | How to place a Region (ContentControl) inside a dialog screen in WPF Prism
How to display another View in a ContentControl inside a Dialog screen in WPF Prism.
#csharp#wpf#prismC# | WPF Prism Screen Navigation Memory Release
How to release memory during C# WPF Prism screen navigation
#csharp#wpf#prismC# | WPF Prism DataGrid Column Visibility Binding
How to bind a DataGrid column's Visibility in C# WPF Prism
#csharp#wpf#prismC# | WPF Prism Screen Navigation (Dialog)
C# WPF Prism dialog screen navigation
#csharp#wpf#prismC# | WPF Prism Screen Navigation
C# WPF Prism screen navigation using navigation regions
#csharp#wpf#prism