Some time ago, I’ve written this post about sending parametrized emails with C#. After some time, the emails weren’t arriving to their destination and I didn’t know why that happened – there…
Month: October 2018
Loading Xaml Views and ViewModels Dynamically
This article demonstrates how to dynamically load XAML views and their corresponding ViewModels into a WPF application at runtime—rather than defining them statically at compile time—by leveraging reflection and runtime loading techniques to instantiate and bind UI components as needed, increasing flexibility and supporting scenarios like plugin architectures. His companion GitHub project DynamicXamlViews provides a practical demonstration of this approach