首页 > 其他分享 >wpf GridControl

wpf GridControl

时间:2022-12-05 14:57:32浏览次数:69  
标签:Data GridControl displays wpf data Lesson View

The WPF Data Grid (GridControl) is a data-aware control designed to display and edit data in different layouts: tabular, treelike, and card. The GridControl allows users to manage large amounts of data (sort, group, filter, and so on).

 

Get Started

#Bind to Data

Refer to the following topic for more information: Bind to Data.

#Views

The GridControl uses Views to display data from a bound data source. You can use the following View types:

  • Table View - displays data in a two-dimensional table.
  • Card View - displays data as cards. Each card arranges fields vertically in a single column.
  • TreeList View - displays data in a tree. Each data record is a tree node.

Views provide options that allow you to specify how to arrange records and fields.

 

Useful Resources

 

标签:Data,GridControl,displays,wpf,data,Lesson,View
From: https://www.cnblogs.com/chucklu/p/16952248.html

相关文章

  • WPF之深入浅出话事件
    就像属性系统在WPF中得到了升级、进化为依赖属性一样,事件系统在WPF也得到了升级-----进化成为了路由事件(RoutedEvent),并在其基础上衍生出命令传递机制。这些机制在很大程度......
  • WPF之Binding深入探讨
    1,DataBinding在WPF中的地位程序的本质是数据+算法。数据会在存储、逻辑和界面三层之间流通,所以站在数据的角度上来看,这三层都很重要。但算法在3层中的分布是不均匀的,对于一......
  • WPF学习之深入浅出话命令
    WPF为我们准备了完善的命令系统,你可能会问:“有了路由事件为什么还需要命令系统呢?”。事件的作用是发布、传播一些消息,消息传达到了接收者,事件的指令也就算完成了,至于如何响......
  • WPF深入浅出话资源
    我们把有用的东西称为资源。“兵马未动,粮草先行”-----程序中的各种数据就是算法的原料和粮草。程序中可以存放数据的地方有很多,可以放在数据库里、可以存储在变量里。介于......
  • WPF之从0开始学习XMAL
    剖析最简单的XMAL代码:<Windowx:Class="WpfApplication2.Window2"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://s......
  • 如何在WPF中调用Winform控件
    功能实现主要分三步:1、添加两个引用:WindowsFormsIntegration.dll(负责整合WPF和Windows)、System.Windows.Forms.2、在XAML文件中添加两个引用(粗体部分):<Wi......
  • 【分享】深入浅出WPF全系列教程及源代码
    由于原书作者的一再要求,在此声明,本书中的部分内容引用了原书名为《深入浅出WPF》的部分内容,如果博文不能满足你现有的学习需要,可以购买正版图书!本人10月份提出离职,但是交接......
  • WPF 读写自定义配置文件
    程序集如下usingSystem.Windows;namespaceWpfApp1{///<summary>///MainWindow.xaml的交互逻辑///</summary>publicpartialclassMainW......
  • WPF学习之控件与布局
    1  控件到底是什么?程序的本质就是“数据+算法”------用户输入原始的数据,算法处理原始数据并得到结果数据。问题就在于程序如何将结果数据显示给用户。同样一组数据,你可......
  • WPF 文本逐字一个个出现的动画效果
    一、效果图:  二、前台代码:<Grid><TextBlockForeground="Transparent"x:Name="text"TextWrapping="Wrap">刚刚想半天都不知道取个什......