原文:WPF Datagrid 动态生成列 并绑定数据

说的是这里 因为列头是动态加载的 (后台for循环 一会能看到代码)

数据来源于左侧列

左侧列数据源 当然num1 属于临时的dome使用  可以用ObservableCollection集合代表 动态创建属性

WPF 动态生成对象属性 (dynamic)


  1. ObservableCollection<NameList> listName = new ObservableCollection<NameList>();
  2. private ObservableCollection<NameList> GetNameData()
  3. {
  4. listName.Add(new NameList("市川 賞子", "リーダー", "B", 1, "2", "14", "r1", "R5", "T6"));
  5. listName.Add(new NameList("石田", "リーダー", "C", 2, "33", "T4", "r2", "R5", "T6"));
  6. listName.Add(new NameList("安达 鮎美", "リーダー", "C", 3,"3","4","r1","R6","T6"));
  7. return listName;
  8. }
  9. }
  10. public class NameList : INotifyPropertyChanged
  11. {
  12. public event PropertyChangedEventHandler PropertyChanged;
  13. public NameList(string name, string jOb, string class_, int num, string n1, string n2, string n3, string n4, string n5) { Name = name; Class_ = class_; JOb = jOb; Num = num; Num1 = n1; Num2 = n2; Num3 = n3; Num4 = n4; Num5 = n5; }
  14. private string name;
  15. public string Name
  16. {
  17. get { return name; }
  18. set
  19. {
  20. name = value;
  21. if (PropertyChanged != null)
  22. {
  23. PropertyChanged(this, new PropertyChangedEventArgs("Name"));
  24. }
  25. }
  26. }
  27. private int num;
  28. public int Num
  29. {
  30. get { return num; }
  31. set
  32. {
  33. num = value;
  34. if (PropertyChanged != null)
  35. {
  36. PropertyChanged(this, new PropertyChangedEventArgs("Num"));
  37. }
  38. }
  39. }
  40. private string class_;
  41. public string Class_
  42. {
  43. get { return class_; }
  44. set
  45. {
  46. class_ = value;
  47. if (PropertyChanged != null)
  48. {
  49. PropertyChanged(this, new PropertyChangedEventArgs("Class_"));
  50. }
  51. }
  52. }
  53. private string jOb;
  54. public string JOb
  55. {
  56. get { return jOb; }
  57. set
  58. {
  59. jOb = value;
  60. if (PropertyChanged != null)
  61. {
  62. PropertyChanged(this, new PropertyChangedEventArgs("JOb"));
  63. }
  64. }
  65. }
  66. private string num1;
  67. public string Num1
  68. {
  69. get { return num1; }
  70. set { num1 = value;
  71. if (PropertyChanged != null)
  72. {
  73. PropertyChanged(this, new PropertyChangedEventArgs("Num1"));
  74. }
  75. }
  76. }
  77. private string num2;
  78. public string Num2
  79. {
  80. get { return num2; }
  81. set { num2 = value;
  82. if (PropertyChanged != null)
  83. {
  84. PropertyChanged(this, new PropertyChangedEventArgs("Num2"));
  85. }
  86. }
  87. }
  88. private string num3;
  89. public string Num3
  90. {
  91. get { return num3; }
  92. set { num3 = value;
  93. if (PropertyChanged != null)
  94. {
  95. PropertyChanged(this, new PropertyChangedEventArgs("Num3"));
  96. }
  97. }
  98. }
  99. private string num4;
  100. public string Num4
  101. {
  102. get { return num4; }
  103. set { num4 = value;
  104. if (PropertyChanged != null)
  105. {
  106. PropertyChanged(this, new PropertyChangedEventArgs("Num4"));
  107. }
  108. }
  109. }
  110. private string num5;
  111. public string Num5
  112. {
  113. get { return num5; }
  114. set { num5 = value;
  115. if (PropertyChanged != null)
  116. {
  117. PropertyChanged(this, new PropertyChangedEventArgs("Num5"));
  118. }
  119. }
  120. }
  121. }

列数据动态生成 与数据绑定


  1. public MainWindow()
  2. {
  3. InitializeComponent();
  4. addColumn();
  5. dataGrid.ItemsSource = GetNameData();
  6. }
  7. List<string> LS = new List<string>();
  8. public void addColumn()
  9. {
  10. LS.Add("表下カップ綿天竺仮縫い_37s_C_1");
  11. LS.Add("上カップマーキしつけ_28s_C_2");
  12. LS.Add("上下カップ接ぎ_33s_C_3");
  13. LS.Add("上下カップ押え_62s_B_4");
  14. LS.Add("カップ脇しつけ_14s_B_5");
  15. LS.Add("表上カップレース端押さえ_41s_B_6");
  16. for (int i = 0; i < LS.Count; i++)
  17. {
  18. DataGridTextColumn dl = new DataGridTextColumn();
  19. dl.Header=LS[i];
  20. dl.Binding = new Binding("Num" + (i + 1) );
  21. dataGrid.Columns.Add(dl);
  22. }
  23. }

主要是 bingding 这一行

需要知道这俩块怎么做的朋友 可以看连接

WPF (DataGridColumnHeader)实现自义定列头样式 并绑定数据

WPF (DataGridRowHeaderStyle)实现自义定行样式 并绑定数据

WPF Datagrid 动态生成列 并绑定数据的更多相关文章

  1. Wpf DataGrid动态添加列,行数据(一)

    由于最近有这方面的需求,而且刚接触wpf不久,在网上找了很多方法,都不是使用MVVM模式的,因为DataGrid的列不能绑定 这就难受了,我想了个折中的方法,这个是使用了MVVMLight的消息机制, ...

  2. Wpf DataGrid动态添加列,行数据(二)

    这是第二中方法,可直接绑定,我这里只是做出了一种思路,并不是最完美. 这里注意一下,因为我里面引用了MVVMLight,所以可能代码不是复制过去就能用了的. 样式也是,所以复制过去看不是我贴出来的界面 ...

  3. WPF DataGrid动态生成列的单元格背景色绑定

    <DataTrigger Binding="{Binding RelativeSource={RelativeSource Self}, Path=Column.DisplayInde ...

  4. WPF datagrid 动态增加列

    DataGrid动态增加列 <Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.m ...

  5. EasyUI datagrid动态生成列

    任务描述:根据用户选择时间段,生成列数据,如图

  6. WPF + RDLC + 动态生成列 + 表头合并

    如下,评论超过20条,马上发代码*(੭*ˊᵕˋ)੭*ଘ,效果如下: 代码逻辑简单. WPF使用RDLC需要使用如下DLL 新建WPF 窗体,黏贴下大概如下 <Window xmlns:rv=&q ...

  7. easylui datagrid 动态生成列

    function load(sdate) { $.getJSON("workorder/statistics.do", { sdate : sdate+'-01' }, funct ...

  8. WPF DataGrid自动生成列

    <Window x:Class="DataGridExam.MainWindow"        xmlns="http://schemas.microsoft.c ...

  9. easyui datagrid 动态生成列

    for (var item_key in data) {//遍历json对象的每个key/value对,p为key var reg = /^score\d+/gi; for (var key in d ...

随机推荐

  1. arcgis api for javascript 学习(七) 调用发布地图信息,并将地图属性信息输出到Excel表格---进阶版

    我们在arcgis api for javascript 学习(三)已经学习到了关于调用地图信息进行属性输出的问题,不过通过代码我们实现后会发现还是有一些小瑕疵的,比如我们只能单个数据属性的输出,如果 ...

  2. OpenStack与ZStack深度对比:架构、部署、计算、运维监控等

    摘要 OpenStack从2010年开源至今,已经走过9个年头,其正在进入主流企业市场,但该项目依然面临较难部署和管理的老问题.有一点是毫无疑问的,那就是OpenStack保持着高速增长的态势,超过5 ...

  3. Docker 常用操作命令

    一. docker安装  方式1 本地安装: 1)下载docker安装文件: 2)执行安装命令  yum localinstall *: 3)安装完之后 重启 systemctl restart do ...

  4. python捕捉详细异常堆栈的方法

    python中有 try——except 的方法捕获异常,可以获取到异常的种类以及自定义异常, 但是有时候对于debug测试来说,信息不全,比如说 触发异常的具体位置在哪: import traceb ...

  5. 初识orm

    初识orm 一.什么是orm 介绍 ORM: 对象关系映射 将随对象映射成 数据表中的鱼跳跳记录 类--->表名 对象--->记录 对象.属性--->字段 # 演示映射关系 ''' ...

  6. Reinforcement Learning by Sutton 第三章习题答案

    好不容易写完了 想看全部的欢迎点击下面的github https://github.com/LyWangPX/Solutions-of-Reinforcement-Learning-An-Introd ...

  7. 华为eNSP路由交换实验-生成树之RSTP

    RSTP基础配置 实验拓扑图 实验步骤 1.基本配置 根据实验编址表进行相应的基本IP配置. 2.配置RSTP基本功能. (1)把生成树模式由默认的MSTP(华为交换机默认开启)改为RSTP. [FW ...

  8. vue定义全局date过滤器(自定义JS文件模块和Moment.js库)

    自定义dateFormat.js文件模块 dateFormat.js /** * 时间字符串 转 时间戳 * @param {String} time_str 时间字符串(格式"2014-0 ...

  9. HTML连载54-网易注册界面实战之信息填写

    一.完成了内容中的右边的一部分.练习了三点:小盒子在大盒子中的位置,最好用大盒子的内边距完成布局,而不是用小盒子的外边距来进行布局:复习了ul,li的用法. <!DOCTYPE html> ...

  10. Python 变量与运算符

    变量 基本概念: 1. 变量,名字,数据的唯一标识2.变量命名: 字母.数字.下划线: 不能以数字开头: 区分大小写: 不能使用保留字和关键字: 命名要有意义:(多个单词时,推荐使用下划线连接) 3. ...