//File:Window.xaml.cs using System; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; using System.Reflection; namespace LayoutPanels { public partial class Window1 : Window { public Window1() { InitializeComponent(); } private void ButtonClick(object sender, RoutedEventArgs e) { Button cmd = (Button)e.OriginalSource;
Type type = this.GetType(); Assembly assembly = type.Assembly; Window win = (Window)assembly.CreateInstance("YourNameSpace." + cmd.Content); win.ShowDialog(); } } }