wpf datagrid 怎么增加数据行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf datagrid 怎么增加数据行相关的知识,希望对你有一定的参考价值。
参考技术A 首先需要弄清楚的是datagrid是用来呈现后台绑定的数据集合的。所以楼主想增加datagrid里的数据的话,可以直接通过添加后台数据来实现。wpf里绑定方式有许多种,默认为单向绑定。即后台数据变化,前台不会刷新。前台做了某些交互,后台也不会发生数据的变化。当然,如果只需要完成楼主的意图:即后台数据刷新,前台表格刷新的话,只需要将后台的数据实体实现INotifyPropertyChanged接口就可以了。本回答被提问者采纳wpf datagrid怎么得到第一项焦点?然后在方向键上下移动
如果用鼠标点WPF上的一个只读的DataGrid控件,然后用键盘UP、Down方向键上下移动,则当前行也上下移动,但是如果用datagrid.focus()方法都焦点设置到datagrid控件,那么就不会出现上面的效果,请问这是怎么回事呢?
参考技术A 我用模板列完成了楼主提出的功能!~望采纳!~前端:
<Grid>
<DataGrid AutoGenerateColumns="False" Name="dataGrid1" >
<DataGrid.Columns>
<DataGridTextColumn Binding="Binding Key"/>
<DataGridTemplateColumn Header="时间">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock MouseDown="txtdate_MouseDown" Name="txtdate"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
</Grid>
后台:
public MainWindow()
InitializeComponent();
Dictionary<int, string> dic = new Dictionary<int, string>
1,"a",
2,"b",
3,"c",
4,"d",
5,"e"
;
dataGrid1.ItemsSource = dic;
private void txtdate_MouseDown(object sender, MouseButtonEventArgs e)
TextBlock tb = sender as TextBlock;
tb.Text = DateTime.Now.ToShortTimeString();
这个很简单哈,只是编辑的时候出现用来编辑的控件(如textbox或combobox),那就编辑 <DataGridTemplateColumn.CellEditingTemplate>就行啦!~ 默认显示空白的话,<DataGridTemplateColumn.CellTemplate>里控件所绑定的字段默认值没有就行了哈。
以上是关于wpf datagrid 怎么增加数据行的主要内容,如果未能解决你的问题,请参考以下文章
wpf datagrid绑定了数据 如果选中多行中怎么获取选中行的某列的值