csharp: Data binding in WPF DataGrid control

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<Window x:Class="WpfProjectDemo.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525" xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol">
    <Grid>
        <DataGrid AutoGenerateColumns="False" Height="59" HorizontalAlignment="Left" Margin="50,39,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="272" MinRowHeight="20" MinHeight="10" Loaded="dataGrid1_Loaded">
        <DataGrid.Columns>
                <DataGridTextColumn Binding="{Binding Path=id}" Header="序号" FontWeight="Bold"/>
                <DataGridTextColumn Binding="{Binding Path=name}" Header="姓名"/>
 
        </DataGrid.Columns>
         </DataGrid>
        <DataGrid AutoGenerateColumns="False" Height="112" HorizontalAlignment="Left" Margin="47,148,0,0" Name="dataGrid2" VerticalAlignment="Top" Width="326" Loaded="dataGrid2_Loaded">
            <DataGrid.Columns>
                <DataGridTextColumn Binding="{Binding Path=ID}" Header="序号" FontWeight="Bold"/>
                <DataGridTextColumn Binding="{Binding Path=Name}" Header="姓名"/>
                <DataGridTextColumn Binding="{Binding Path=BookTitle}" Header="书藉名称" FontWeight="Bold"/>
                <DataGridTextColumn Binding="{Binding Path=CreatDate}" Header="创作日期"/>
                <DataGridTextColumn Binding="{Binding Path=IsMVP}" Header="是否MVP" FontWeight="Bold"/>
                 
            </DataGrid.Columns>
 
 
        </DataGrid>
         
    </Grid>
</Window>
 
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Data;
 
namespace WpfProjectDemo
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        DataTable setData()
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("id", typeof(int));
            dt.Columns.Add("name", typeof(string));
            dt.Rows.Add(1, "geovindu");
            dt.Rows.Add(2, "涂聚文");
            return dt;
        }
 
 
        /// <summary>
        ///
        /// </summary>
        public MainWindow()
        {
            InitializeComponent();
             
        }
 
 
        /// <summary>
        /// List of Authors
        /// </summary>
        /// <returns></returns>
        private List<Author> LoadCollectionData()
        {
            List<Author> authors = new List<Author>();
            authors.Add(new Author()
            {
                ID = 101,
                Name = "Geovin Du",
                BookTitle = "Graphics Programming with GDI+",
                CreatDate = new DateTime(1975, 2, 23),
                IsMVP = false
            });
            authors.Add(new Author()
            {
                ID = 201,
                Name = "涂聚文",
                BookTitle = "Programming C#",
                CreatDate = new DateTime(1982, 4, 12),
                IsMVP = true
            });
            authors.Add(new Author()
            {
                ID = 244,
                Name = "塗聚文",
                BookTitle = "LINQ in Vista",
                CreatDate = new DateTime(1985, 9, 11),
                IsMVP = true
            });
            return authors;
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void dataGrid1_Loaded(object sender, RoutedEventArgs e)
        {
           // var grid = sender as DataGrid;
           // grid.ItemsSource = LoadCollectionData();
           //this.dataGrid1.ItemsSource = LoadCollectionData();
           this.dataGrid1.ItemsSource = setData().DefaultView;
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void dataGrid2_Loaded(object sender, RoutedEventArgs e)
        {
            this.dataGrid2.ItemsSource = LoadCollectionData();
        }
 
 
    }
 
 
 
    public class Author
    {
        public int ID { get; set; }
        public string Name { get; set; }
        public DateTime CreatDate { get; set; }
        public string BookTitle { get; set; }
        public bool IsMVP { get; set; }
    }
}

  

posted @   ®Geovin Du Dream Park™  阅读(465)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
历史上的今天:
2010-07-13 CSS Vertical Text
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示