Adding tab items dynamically in WPF / MVVM
Some instructions on how to add/remove tab items within a WPF / MVVM setting. Step 1: Create a new WPF application Step 2: Add classes to implement ICommand RelayCommand.cs EventRaiser.cs EventArgs.cs Step 3: Add the ViewModel class We need a class to implement the button click events, as well contain data for tab-related information. MainWindowViewModel.cs …
Continue reading ‘Adding tab items dynamically in WPF / MVVM’ »