From 6d5f1082cfc2c0101a7e5729041b3ea1f3908b69 Mon Sep 17 00:00:00 2001 From: jkuehner Date: Sun, 11 Aug 2013 17:41:22 +0200 Subject: [PATCH] Collection Editor Tab Control fix --- .../Project/PropertyGrid/Editors/CollectionEditor.xaml.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/PropertyGrid/Editors/CollectionEditor.xaml.cs b/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/PropertyGrid/Editors/CollectionEditor.xaml.cs index 954f3e7418..c6ab55c11d 100644 --- a/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/PropertyGrid/Editors/CollectionEditor.xaml.cs +++ b/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/PropertyGrid/Editors/CollectionEditor.xaml.cs @@ -26,6 +26,9 @@ namespace ICSharpCode.WpfDesign.Designer.PropertyGrid.Editors TypeMappings.Add(typeof(ListView),typeof(ListViewItem)); TypeMappings.Add(typeof(ComboBox),typeof(ComboBoxItem)); TypeMappings.Add(typeof(TreeView),typeof(TreeViewItem)); + TypeMappings.Add(typeof(TabControl),typeof(TabItem)); + TypeMappings.Add(typeof(ColumnDefinitionCollection),typeof(ColumnDefinition)); + TypeMappings.Add(typeof(RowDefinitionCollection),typeof(RowDefinition)); } private DesignItem _item;