博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF DataGrid的使用
阅读量:6265 次
发布时间:2019-06-22

本文共 1453 字,大约阅读时间需要 4 分钟。

构造数据:

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;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;namespace WpfApplication2{    ///     /// MainWindow.xaml 的交互逻辑    ///     public partial class MainWindow : Window    {        Random rnd = new Random();        public MainWindow()        {            InitializeComponent();           var tlist = new List
(); for (int i = 0; i < 10; i++) { tlist.Add(new Person() { Name = "张三" + i, Age = rnd.Next(20) }); } list= tlist.Select(x => new { x, id = Guid.NewGuid() }).OrderBy(y => y.id).Select(z => z.x).ToList
(); this.DataContext = this; } public List
list { get; set; } } public class Person { public string Name { get; set; } public int Age { get; set; } }}

界面显示:

转载于:https://www.cnblogs.com/lunawzh/p/5935552.html

你可能感兴趣的文章
11面向对象封装案例
查看>>
动态加载js小笔
查看>>
C#_IComparer实例 - 实现ID或者yearOfscv排序
查看>>
2016 hosts
查看>>
TypeKit ,use online fonts
查看>>
原生Ajax
查看>>
文件上传及下载
查看>>
七、jquery对象的学习,有难度
查看>>
Ajax_数据格式_HTML
查看>>
微信公众账号怎么快速增加粉丝
查看>>
HBase 笔记1
查看>>
loadrunner两个函数:取参数长度和时间戳函数
查看>>
Docker exec与Docker attach
查看>>
解决ssh登录Host key verification failed
查看>>
Java8新特性之二:方法引用
查看>>
记录日常Linux常用软件
查看>>
Jmeter之Bean shell使用(一)
查看>>
[翻译]利用顶点位移的VR畸变校正
查看>>
wp socket tcp链接
查看>>
asp.net 批量下载实现(打包压缩下载)
查看>>