我用C#代码创建一个TabControl。我将其ItemsSource绑定到一个集合并设置边距。 出于某种原因,将其DisplayMemberPath设置为不起作用。
_tabControl = new TabControl();
_tabControl.Margin = new Thickness(5);
_tabControl.DisplayMemberPath = "Header";
_tabControl.SetBinding(ItemsControl.ItemsSourceProperty, itemsSourceBinding);
集合中的每个项目都有一个名为“Header”的属性。
为什么这不起作用?
安德烈
编辑: 以下是所有相关代码:
public partial class VariationGroupPreviewOptionsView
{
public string Header { get; set; }
public VariationGroupPreviewOptionsView()
{
InitializeComponent();
DataContext = new VariationGroupPreviewOptionsViewModel();
}
}
private void OptionsCommandExecute()
{
var dlg = new OptionsDialog();
dlg.ItemsSource = new List<ContentControl>() {new VariationGroupPreviewOptionsView(){Header = "Test"}};
dlg.ShowDialog();
}
public class OptionsDialog : Dialog
{
public static readonly DependencyProperty ItemsSourceProperty =
DependencyProperty.Register("ItemsSource", typeof (IEnumerable), typeof (OptionsDialog), new PropertyMetadata(default(IEnumerable)));
public IEnumerable ItemsSource
{
get { return (IEnumerable) GetValue(ItemsSourceProperty); }
set { SetValue(ItemsSourceProperty, value); }
}
private readonly TabControl _tabControl;
public OptionsDialog()
{
DataContext = this;
var itemsSourceBinding = new Binding();
itemsSourceBinding.Path = new PropertyPath("ItemsSource");
_tabControl = new TabControl();
_tabControl.Margin = new Thickness(5);
_tabControl.DisplayMemberPath = "Header";
_tabControl.SetBinding(ItemsControl.ItemsSourceProperty, itemsSourceBinding);
var recRectangle = new Rectangle();
recRectangle.Margin = new Thickness(5);
recRectangle.Effect = (Effect)FindResource("MainDropShadowEffect");
recRectangle.Fill = (Brush)FindResource("PanelBackgroundBrush");
var grdGrid = new Grid();
grdGrid.Children.Add(recRectangle);
grdGrid.Children.Add(_tabControl);
DialogContent = grdGrid;
}
}
答案 0 :(得分:5)
没有冒犯,但你的代码是一个令人费解的混乱,分散了你的真实问题。如果您简化,您会看到设置DisplayMemberPath
完全符合您的要求:
XAML:
<TabControl ItemsSource="{Binding}" DisplayMemberPath="Header"/>
代码:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.DataContext = new List<TabItemModel>
{
new TabItemModel
{
Header = "First"
},
new TabItemModel
{
Header = "Second"
},
};
}
}
public class TabItemModel
{
public string Header
{
get;
set;
}
}
结果:
所以,问题不在于TabControl.DisplayMemberPath
不起作用 - 它在你过于复杂的代码中的其他地方。简化,直到找到位置。