提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:龚雪|2021-02-23 09:39:22.757|阅读 287 次
概述:DevExpress WPF拥有120+个控件和库,将帮助您交付满足甚至超出企业需求的高性能业务应用程序,本文将为大家介绍如何绑定到列集合。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
下载DevExpress v20.2完整版 DevExpress v20.2汉化资源获取
DevExpress WPF 拥有120+个控件和库,将帮助您交付满足甚至超出企业需求的高性能业务应用程序。通过DevExpress WPF能创建有着强大互动功能的XAML基础应用程序,这些应用程序专注于当代客户的需求和构建未来新一代支持触摸的解决方案。
使用模型视图ViewModel(MVVM)架构模式设计WPF应用程序时,可能需要描述模型或ViewModel中的列。 网格可以绑定到包含列设置的对象集合,该对象设置在Model或ViewModel中进行了描述,从而最大限度地减少了“隐藏代码”的需求。
假设一个雇员视图模型,它包括以下类:
C#
using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; namespace Model { public class ViewModel { public List<string> Cities { get; private set; } // Returns a list of employees so that they can be bound to the grid control. public List<Employee> Source { get; private set; } // The collection of grid columns. public ObservableCollection<Column> Columns { get; private set; } public ViewModel() { Source = EmployeeData.DataSource; List<string> _cities = new List<string>(); foreach (Employee employee in Source) { if (!_cities.Contains(employee.City)) _cities.Add(employee.City); } Cities = _cities; Columns = new ObservableCollection<Column>() { new Column() { FieldName = "FirstName", Settings = SettingsType.Default }, new Column() { FieldName = "LastName", Settings = SettingsType.Default }, new Column() { FieldName = "JobTitle", Settings = SettingsType.Default }, new Column() { FieldName = "BirthDate", Settings = SettingsType.Default }, new ComboColumn() { FieldName = "City", Settings = SettingsType.Combo, Source = Cities } }; } } // The data item. public class Employee { public string FirstName { get; set; } public string LastName { get; set; } public string JobTitle { get; set; } public string City { get; set; } public DateTime BirthDate { get; set; } } public class EmployeeData : List<Employee> { public static List<Employee> DataSource { get { List<Employee> list = new List<Employee>(); list.Add(new Employee() { FirstName = "Nathan", LastName = "White", City = "NY", JobTitle = "Sales Manager", BirthDate = new DateTime(1970, 1, 10) }); return list; } } } public class Column { // Specifies the name of a data source field to which the column is bound. public string FieldName { get; set; } // Specifies the type of an in-place editor used to edit column values. public SettingsType Settings { get; set; } } // Corresponds to a column with the combo box in-place editor. public class ComboColumn : Column { // The source of combo box items. public IList Source { get; set; } } public enum SettingsType { Default, Combo } }
注意:如果将Columns集合分配给网格控件后可能会更改,则它应实现INotifyCollectionChanged,以便网格中可自动反映View Model内所做的更改。
网格控件基于列模板生成列,创建多个模板,每种列类型一个模板。使用单个模板,您可以在无限数量的网格控件中创建无限数量的列。 在此示例中,有两个列模板:DefaultColumnTemplate和ComboColumnTemplate。
为避免绑定到列属性时的性能问题,请使用dxci:DependencyObjectExtensions.DataContext附加属性,请参见下面的示例。
XAML
<!----> xmlns:dxci="//schemas.devexpress.com/winfx/2008/xaml/core/internal" <!----> <DataTemplate x:Key="DefaultColumnTemplate"> <ContentControl> <dxg:GridColumn FieldName="{Binding Path=(dxci:DependencyObjectExtensions.DataContext).FieldName, RelativeSource={RelativeSource Self}}" Header="{Binding Path=(dxci:DependencyObjectExtensions.DataContext).Header, RelativeSource={RelativeSource Self}}" Width="{Binding Path=(dxci:DependencyObjectExtensions.DataContext).Width, RelativeSource={RelativeSource Self}}" /> </ContentControl> </DataTemplate>
要根据列的类型选择所需的模板,请使用模板选择器。 在此示例中,模板选择器由ColumnTemplateSelector类表示。
XAML
<Window x:Class="WpfApplication10.MainWindow" xmlns="//schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="//schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525" xmlns:dxg="//schemas.devexpress.com/winfx/2008/xaml/grid" xmlns:dxe="//schemas.devexpress.com/winfx/2008/xaml/editors" xmlns:dx="//schemas.devexpress.com/winfx/2008/xaml/core" xmlns:dxci="//schemas.devexpress.com/winfx/2008/xaml/core/internal" xmlns:model="clr-namespace:Model" xmlns:view="clr-namespace:View"> <Window.DataContext> <model:ViewModel/> </Window.DataContext> <Window.Resources> <view:ColumnTemplateSelector x:Key="ColumnTemplateSelector"/> <DataTemplate x:Key="DefaultColumnTemplate"> <ContentControl> <dxg:GridColumn FieldName="{Binding Path=(dxci:DependencyObjectExtensions.DataContext).FieldName, RelativeSource={RelativeSource Self}}"/> </ContentControl> </DataTemplate> <DataTemplate x:Key="ComboColumnTemplate"> <ContentControl> <dxg:GridColumn FieldName="{Binding Path=(dxci:DependencyObjectExtensions.DataContext).FieldName, RelativeSource={RelativeSource Self}}"> <dxg:GridColumn.EditSettings> <dxe:ComboBoxEditSettings ItemsSource="{Binding Source}"/> </dxg:GridColumn.EditSettings> </dxg:GridColumn> </ContentControl> </DataTemplate> </Window.Resources> <Grid> </Grid> </Window>
C#
using System.Windows; using System.Windows.Controls; using Model; namespace View { public class ColumnTemplateSelector : DataTemplateSelector { public override DataTemplate SelectTemplate(object item, DependencyObject container) { Column column = (Column)item; return (DataTemplate)((Control)container).FindResource(column.Settings + "ColumnTemplate"); } } }
注意:如果可以使用单个模板描述所有网格列,则无需创建列模板选择器,而是将此模板分配给网格的属性。
注意:您可以创建一种样式来指定使用不同模板生成的所有列共有的设置,您可以在样式内指定对ViewModel属性的绑定(请参见下面的FieldName):
XAML
<Window.Resources> <Style x:Key="ColumnStyle" TargetType="dxg:GridColumn"> <Setter Property="FilterPopupMode" Value="CheckedList"/> <Setter Property="FieldName" Value="{Binding Path=(dxci:DependencyObjectExtensions.DataContext).FieldName, RelativeSource={RelativeSource Self}}"/> </Style> </Window.Resources>
该样式应分配给属性。
最后,指定网格的,和。属性指定网格的数据源,属性指定网格从中生成列的源,属性指定列模板选择器,该选择器根据其类型为每个列返回一个模板。
XAML
<Grid> <dxg:GridControl Name="grid" ItemsSource="{Binding Source}" ColumnsSource="{Binding Columns}" ColumnGeneratorTemplateSelector="{StaticResource ColumnTemplateSelector}"> <dxg:GridControl.View> <dxg:TableView Name="tableView1" AutoWidth="True" NavigationStyle="Cell" /> </dxg:GridControl.View> </dxg:GridControl> </Grid>
下图显示了结果。
DevExpress技术交流群3:700924826 欢迎一起进群讨论
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
文章转载自:慧都网本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
行业领先的界面控件开发包,帮助企业构建卓越应用!
DevExpress DXperience Subscription高性价比的企业级.NET用户界面套包,助力企业创建卓越应用!
DevExpress WPF Subscription高效MVVM开发模式,WPF界面解决方案首选工具,帮助企业实现酷炫动效界面。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢