Articles
Every article Ever Garden has grown, newest first. Narrow them down by topic, tag or a search.
Building Desktop Ink - A Windows Screen Drawing App
Implementation story of a lightweight screen overlay app built with .NET 10 for marking during screen sharing in online meetings
#csharp#wpf#dotnetHow to Asynchronously Update an ObservableCollection in C# WPF
Implement an ObservableCollection that supports asynchronous updates in WPF, with examples of AsyncObservableCollection and PageMstCollection.
#csharp#wpfC# | 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 Drag-and-Drop Reordering
In C# WPF, reordering DataGrid records via drag and drop
#csharp#wpfC# | 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