private void OutputLibrary_Click(object sender, RoutedEventArgs e)
        {
            List.Children.Clear();
            OutputLibrary OutputLibrary = new OutputLibrary();

            List.Children.Add(OutputLibrary);
            OutputLibrary.SetValue(Grid.RowProperty, 0);
            OutputLibrary.SetValue(Grid.ColumnProperty, 3);
            OutputLibrary.SetValue(Grid.ColumnSpanProperty, 12);
        }
Esempio n. 2
0
 public TypeFactory(OutputLibrary library)
 {
     _library = library;
 }