In an IContentPluginBase plugin, implement the SetContent method to change the content of the plugin’s tab.
You may create a user control inline as seen below, but you can also create a separate User Control (WPF) control and pass that to the control.Content property instead.
//summary // The SetContent method to set the content //summary public void SetContent(ContentControl control) { Button buttonControl = new Button() { Content="PluginButton", Height=25, Width=100 }; control.Content = buttonControl; }