I've been experimenting with dynamically created tabs in WPF. The idea is that the user selects a menu item and a tab is created and populated with a user control. Like so many things, WPF makes this easy once you figure out how to do it. The thing I struggled with the most was getting the user control to display when the first tab was created. Below is a function that takes a user control and tab name, creates a tab, and shows it to the user. /// <summary> /// Create a new tab, populate it...