通过 C# 代码创建 DataGridTemplateColumn
Posted
技术标签:
【中文标题】通过 C# 代码创建 DataGridTemplateColumn【英文标题】:Create DataGridTemplateColumn Through C# Code 【发布时间】:2012-02-05 11:37:42 【问题描述】:我创建了一个动态数据网格。我正在通过后面的代码为其创建每一列。我在不编辑时希望在文本块中显示但在编辑时作为组合框显示的列上遇到问题。我有一个 ObservableCollection 的交易。每个事务都有一个称为“帐户”的类型。这是我目前所拥有的:
private DataGridTemplateColumn GetAccountColumn()
// Create The Column
DataGridTemplateColumn accountColumn = new DataGridTemplateColumn();
accountColumn.Header = "Account";
Binding bind = new Binding("Account");
bind.Mode = BindingMode.TwoWay;
// Create the TextBlock
FrameworkElementFactory textFactory = new FrameworkElementFactory(typeof(TextBlock));
textFactory.SetBinding(TextBlock.TextProperty, bind);
DataTemplate textTemplate = new DataTemplate();
textTemplate.VisualTree = textFactory;
// Create the ComboBox
bind.Mode = BindingMode.OneWay;
FrameworkElementFactory comboFactory = new FrameworkElementFactory(typeof(ComboBox));
comboFactory.SetValue(ComboBox.DataContextProperty, this.Transactions);
comboFactory.SetValue(ComboBox.IsTextSearchEnabledProperty, true);
comboFactory.SetBinding(ComboBox.ItemsSourceProperty, bind);
DataTemplate comboTemplate = new DataTemplate();
comboTemplate.VisualTree = comboFactory;
// Set the Templates to the Column
accountColumn.CellTemplate = textTemplate;
accountColumn.CellEditingTemplate = comboTemplate;
return accountColumn;
值显示在 TextBlock 中。但是,在组合框中,我只能让每个项目显示一个字符。例如,这里是文本块:
但是当我点击编辑并进入组合框时,显示如下:
有人可以帮助我正确显示 Combobox 中的项目吗?此外,当我从组合框中选择某些内容时,文本块不会使用我选择的项目进行更新。
更新:
这是我现在的专栏。 ComboBox 中的项目正在正确显示。 The issue now is that when a new item is selected, the text in the TextBlock isn't updated with the new item.
private DataGridTemplateColumn GetAccountColumn()
// Create The Column
DataGridTemplateColumn accountColumn = new DataGridTemplateColumn();
accountColumn.Header = "Account";
Binding bind = new Binding("Account");
bind.Mode = BindingMode.OneWay;
// Create the TextBlock
FrameworkElementFactory textFactory = new FrameworkElementFactory(typeof(TextBlock));
textFactory.SetBinding(TextBlock.TextProperty, bind);
DataTemplate textTemplate = new DataTemplate();
textTemplate.VisualTree = textFactory;
// Create the ComboBox
Binding comboBind = new Binding("Account");
comboBind.Mode = BindingMode.OneWay;
FrameworkElementFactory comboFactory = new FrameworkElementFactory(typeof(ComboBox));
comboFactory.SetValue(ComboBox.IsTextSearchEnabledProperty, true);
comboFactory.SetValue(ComboBox.ItemsSourceProperty, this.Accounts);
comboFactory.SetBinding(ComboBox.SelectedItemProperty, comboBind);
DataTemplate comboTemplate = new DataTemplate();
comboTemplate.VisualTree = comboFactory;
// Set the Templates to the Column
accountColumn.CellTemplate = textTemplate;
accountColumn.CellEditingTemplate = comboTemplate;
return accountColumn;
“Accounts”属性在我的 MainWindow 类中声明如下:
public ObservableCollection<string> Accounts get; set;
public MainWindow()
this.Types = new ObservableCollection<string>();
this.Parents = new ObservableCollection<string>();
this.Transactions = new ObservableCollection<Transaction>();
this.Accounts = new ObservableCollection<string>();
OpenDatabase();
InitializeComponent();
这是我的事务类:
public class Transaction
private string date;
private string number;
private string account;
public string Date
get return date;
set date = value;
public string Number
get return number;
set number = value;
public string Account
get return account;
set account = value;
【问题讨论】:
你不应该为不同的绑定重用同一个绑定实例... 【参考方案1】:您将ItemsSource
绑定到选定的值,一个字符串,也就是char 数组,所以每个字符都用作一个项目,ItemsSource
绑定大概应该针对可以从中选择值的其他集合。
【讨论】:
啊,是的,这是有道理的!谢谢(你的)信息!我添加了代码,以便 itemssource 现在来自不同的集合。组合框中的项目按应有的方式显示。还有一件事,当我从组合框中选择不同的值时,文本块不会用新项目更新。我该如何解决? @EricR.:将SelectedItem
或SelectedValue
绑定到Account
。如果项目已经是应该用作帐户值的字符串,则使用SelectedItem
,如果该值是所选项目(而不是项目本身)的属性,请结合使用SelectedValue
和SelectedValuePath
。跨度>
我该怎么做?我正在使用的 Accounts 的新集合是 ObservableCollection"Account"
创建一个新的Binding
并使用SetBinding 将其设置在SelectedItemProperty
上,这应该就是您需要做的所有事情......
是的,这个我已经加进去了,选中后TextBlock中仍然没有显示该值。【参考方案2】:
Dim newBind As Binding = New Binding("LinktoCommonOutputBus")
newBind.Mode = BindingMode.OneWay
factory1.SetValue(ComboBox.ItemsSourceProperty, dictionary)
factory1.SetValue(ComboBox.NameProperty, name)
factory1.SetValue(ComboBox.SelectedValuePathProperty, "Key")
factory1.SetValue(ComboBox.DisplayMemberPathProperty, "Value")
factory1.SetBinding(ComboBox.SelectedValueProperty, newBind)
通过创建绑定,您可以在 WPF 的数据网格中设置 SelectedValue。
【讨论】:
以上是关于通过 C# 代码创建 DataGridTemplateColumn的主要内容,如果未能解决你的问题,请参考以下文章