C# WPF DataGrid控件实现三级联动
利用DataGrid控件实现联动的功能,在数据库客户软件中是随处可见的,然而网上的资料却是少之又少,令人崩溃。
本篇博文将介绍利用DataGrid控件模板定义的三个ComboBox实现“省、市、区”的三级联动。步骤如下:
一.定义地域信息类(注意包含System.ComponentModel命名空间)
- class RegionInfo : INotifyPropertyChanged //地区信息
- {
- private string _province;//省
- private string _city;//市
- private string _area;//区
- public event PropertyChangedEventHandler PropertyChanged;
- public string Province
- {
- get { return _province; }
- set
- {
- _province = value;
- PropertyChanged(this, new PropertyChangedEventArgs("Province"));
- }
- }
- public string City
- {
- get { return _city; }
- set
- {
- _city = value;
- PropertyChanged(this, new PropertyChangedEventArgs("City"));
- }
- }
- public string Area
- {
- get { return _area; }
- set
- {
- _area = value;
- PropertyChanged(this, new PropertyChangedEventArgs("Area"));
- }
- }
- public RegionInfo(string province, string city, string area)//构造函数
- {
- _province = province;
- _city = city;
- _area = area;
- }
- }
二.编写DataGrid控件的XAML代码
- <!--AutoGenerateColumns="False"这句话告诉控件不自动生成列,是必要的,如果没有,控件会更具数据源自动生成列,这个在我们这种写法中看起来就有重复的两列数据-->
- <DataGrid x:Name="dataGrid" ItemsSource="{Binding}" AutoGenerateColumns="False" HorizontalAlignment="Left" VerticalAlignment="Top" Height="319" Width="302">
- <DataGrid.Columns>
- <!--省-->
- <DataGridTemplateColumn Header="省" Width="100">
- <!--显示模式-->
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBlock Text="{Binding Path=Province ,Mode=TwoWay}"></TextBlock>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- <!--编辑模式-->
- <DataGridTemplateColumn.CellEditingTemplate>
- <DataTemplate>
- <ComboBox x:Name="ComboBoxProvince" DropDownClosed="ProvinceDropDownClosed" Loaded="ProvinceLoaded" Text="{Binding Path=Province ,Mode=TwoWay}" DisplayMemberPath="Province" ></ComboBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellEditingTemplate>
- </DataGridTemplateColumn>
- <!--市-->
- <DataGridTemplateColumn Header="市" Width="100">
- <!--显示模式-->
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBlock Text="{Binding Path=City ,Mode=TwoWay}"></TextBlock>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- <!--编辑模式-->
- <DataGridTemplateColumn.CellEditingTemplate>
- <DataTemplate>
- <ComboBox x:Name="ComboBoxCity" DropDownClosed="CityDropDownClosed" Loaded="CityLoaded" Text="{Binding Path=City,Mode=TwoWay}" DisplayMemberPath="City" ></ComboBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellEditingTemplate>
- </DataGridTemplateColumn>
- <!--区-->
- <DataGridTemplateColumn Header="区" Width="100">
- <!--显示模式-->
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBlock Text="{Binding Path=Area}"></TextBlock>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- <!--编辑模式-->
- <DataGridTemplateColumn.CellEditingTemplate>
- <DataTemplate>
- <ComboBox x:Name="ComboBoxArea" DropDownClosed="AreaDropDownClosed" Loaded="AreaLoaded" Text="{Binding Path=Area}" DisplayMemberPath="Area" ></ComboBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellEditingTemplate>
- </DataGridTemplateColumn>
- </DataGrid.Columns>
- </DataGrid>
三.为DataGrid控件准备数据源对象
对象声明
- ObservableCollection<RegionInfo> regionInfoList = new ObservableCollection<RegionInfo>();//DataGrid的数据源
对象添加
- //DataGrid初始绑定数据
- regionInfoList.Add(new RegionInfo("广东省", "深圳市", "罗湖区"));
- regionInfoList.Add(new RegionInfo("广东省", "深圳市", "南山区"));
对象绑定
- dataGrid.ItemsSource = regionInfoList;//绑定数据源
四.为DataGrid控件的模板列加载时提供选项
对象声明
- ObservableCollection<RegionInfo> regionInfoSelectList = new ObservableCollection<RegionInfo>();//用于DataGrid的模板列加载时提供选项
对象添加
- //三级联动数据项
- regionInfoSelectList.Add(new RegionInfo("广东省", "深圳市", "罗湖区"));
- regionInfoSelectList.Add(new RegionInfo("广东省", "深圳市", "南山区"));
- regionInfoSelectList.Add(new RegionInfo("广东省", "潮州市", "湘桥区"));
- regionInfoSelectList.Add(new RegionInfo("广东省", "潮州市", "枫溪区"));
- regionInfoSelectList.Add(new RegionInfo("湖北省", "武汉市", "江夏区"));
- regionInfoSelectList.Add(new RegionInfo("湖北省", "武汉市", "武昌区"));
五.在DataGrid模板列加载的时候实时更新其数据源并绑定到ComboBox的选项中
- /// <summary>
- /// ProvinceLoaded 省份下拉列表框初始化,绑定数据源
- /// </summary>
- void ProvinceLoaded(object sender, RoutedEventArgs e)
- {
- ComboBox curComboBox = sender as ComboBox;
- //为下拉控件绑定数据源,并选择原选项为默认选项
- string text = curComboBox.Text;
- //去除重复项查找,跟数据库连接时可以让数据库来实现
- var query = regionInfoSelectList.GroupBy(p => p.Province).Select(p => new { Province = p.FirstOrDefault().Province });
- int itemcount = 0;
- curComboBox.SelectedIndex = itemcount;
- foreach (var item in query.ToList())
- {
- if (item.Province == text)
- {
- curComboBox.SelectedIndex = itemcount;
- break;
- }
- itemcount++;
- }
- curComboBox.ItemsSource = query;
- curComboBox.IsDropDownOpen = true;//获得焦点后下拉
- }
- /// <summary>
- /// CityLoaded 市下拉列表框初始化,绑定数据源
- /// </summary>
- void CityLoaded(object sender, RoutedEventArgs e)
- {
- //获得当前选中项的省份信息
- string province = (dataGrid.SelectedItem as RegionInfo).Province;
- //查找选中省份下的市作为数据源
- var query = (from l in regionInfoSelectList
- where (l.Province == province)
- group l by l.City into grouped
- select new { City = grouped.Key });
- ComboBox curComboBox = sender as ComboBox;
- //为下拉控件绑定数据源,并选择原选项为默认选项
- string text = curComboBox.Text;
- //去除重复项查找,跟数据库连接时可以让数据库来实现
- int itemcount = 0;
- curComboBox.SelectedIndex = itemcount;
- foreach (var item in query.ToList())
- {
- if (item.City == text)
- {
- curComboBox.SelectedIndex = itemcount;
- break;
- }
- itemcount++;
- }
- curComboBox.ItemsSource = query;
- curComboBox.IsDropDownOpen = true;//获得焦点后下拉
- }
- /// <summary>
- /// AreaLoaded 区下拉列表框初始化,绑定数据源
- /// </summary>
- void AreaLoaded(object sender, RoutedEventArgs e)
- {
- string province = (dataGrid.SelectedItem as RegionInfo).Province;
- string city = (dataGrid.SelectedItem as RegionInfo).City;
- //查找选中省份下的市作为数据源
- var query = (from l in regionInfoSelectList
- where (l.Province == province && l.City == city)
- group l by l.Area into grouped
- select new { Area = grouped.Key });
- ComboBox curComboBox = sender as ComboBox;
- //为下拉控件绑定数据源,并选择原选项为默认选项
- string text = curComboBox.Text;
- //去除重复项查找,跟数据库连接时可以让数据库来实现
- int itemcount = 0;
- curComboBox.SelectedIndex = itemcount;
- foreach (var item in query.ToList())
- {
- if (item.Area == text)
- {
- curComboBox.SelectedIndex = itemcount;
- break;
- }
- itemcount++;
- }
- curComboBox.ItemsSource = query;
- curComboBox.IsDropDownOpen = true;//获得焦点后下拉
- }
做到这一步基本上算是做完了,但是编译运行后会发现在选择省或者市的时候,后面的选项并没有做相应的改变,这是上一篇文章 C# WPF DataGrid控件同行编辑的实时更新问题 所述的问题,所以还需最后一步
六.参考 C# WPF DataGrid控件同行编辑的实时更新问题 解决更新问题(懒得再写一遍了哈哈)
哦哦,更新代码分别写在
- /// <summary>
- /// CityDropDownClosed 市下拉列表框选择改变刷新
- /// </summary>
- private void CityDropDownClosed(object sender, EventArgs e)
- {
- }
- /// <summary>
- /// ProvinceDropDownClosed 省份下拉列表框选择改变刷新
- /// </summary>
- private void ProvinceDropDownClosed(object sender, EventArgs e)
- {
- }
- /// <summary>
- /// AreaDropDownClosed 区下拉列表框选择改变刷新
- /// </summary>
- private void AreaDropDownClosed(object sender, EventArgs e)
- {
- }
这三个函数中。如果还想再只能点,在省下拉列表选择后,市下拉列表下拉。市下拉列表选择后,区下拉列表下拉,则可以参考 C# WPF 模拟键盘输入与UI控件进行交互 这篇文章,然后在上面提到的省、市两个下拉列表框中模拟键盘按下“TAD”键即可。
C# WPF DataGrid控件实现三级联动的更多相关文章
- WPF DataGrid 控件的运用
WPF DataGrid 控件的运用 运行环境:Window7 64bit,.NetFramework4.61,C# 6.0: 编者:乌龙哈里 2017-02-23 参考: King Cobra 博客 ...
- NPOI导出WPF DataGrid控件显示数据
最近做个项目,需要导出DataGrid显示的数据,中间遇到了不少的坑,在此纪录一下,方便以后查看,也希望能给用到的人,一点帮助. 导出DataGrid显示的数据,并不是导出DataGrid的Items ...
- timer控件、三级联动
timer控件: 实现时间日期自增长: using System; using System.Collections.Generic; using System.ComponentModel; usi ...
- 【2017-05-05】timer控件、三级联动、帐号激活权限设置
一.Timer控件 Timer实际就是一个线程控件. 属性:Enabled 是否被启用 Interval 多长时间执行一次控件中的代码 事件: Tick 事件中放要执行的代码. ...
- timer控件、三级联动、帐号激活权限设置
一.Timer控件 Timer实际就是一个线程控件. 属性:Enabled 是否被启用 Interval 多长时间执行一次控件中的代码 事件: Tick 事件中放要执行的代码. ...
- WPF DataGrid控件中某一列根据另一个文本列的值显示相应的模板控件
之前做项目的时候需要实现这样一个功能.WPF DataGrid有两列,一列为"更新状态”列,一列为"值"列,如果"更新状态"列的值为“固定值更新”,则 ...
- WPF:获取DataGrid控件单元格DataGridCell
转载:http://blog.csdn.net/jhqin/article/details/7645357 /* ------------------------------------------- ...
- wpf研究之道-datagrid控件(1)
"想要说些什么 又不知从何说起",每当想要写一些关于wpf的文章,总是沉思良久,怕自己写不好.今天我想要说的是wpf中datagrid控件.我们先来看看它在整个类的层次结构: ...
- wpf研究之道——datagrid控件分页
这是我们的datagrid分页效果图,有上一页,下一页,可以跳到任何一页.当页码比较多的时候,只显示几页,其余用点点,界面实现如下: <!--分页--> <StackPanel Or ...
随机推荐
- linux上部署thinkphp5提示500
解决方法一:LNMP 1.4上也可以直接使用lnmp1.4/tools/ 目录下的 ./remove_open_basedir_restriction.sh,输入网站的全路径(如/www/wwwroo ...
- SPOJ QTREE3 - Query on a tree again!
You are given a tree (an acyclic undirected connected graph) with N nodes. The tree nodes are number ...
- 为了防止detailsview中修改后,而girdview却没立即更新显示
原文发布时间为:2008-07-30 -- 来源于本人的百度文章 [由搬家工具导入] 可以在detailsview的事件中添加如下语句,即增加一个头,让它在0秒的时候刷新: Response.AddH ...
- 禁用VMware的vmem文件
新建一个虚拟机,VMWare会默认为其创建一个虚拟内存文件*.VMEM, 这个文件会影响系统的磁盘性能,所以最好关闭它. 该当是找到*.vmx文件,在文件最后加入一行 mainMem.useNamed ...
- py2exe打包整个项目
这段时间做了用Python做了一个科学计算的项目,项目中用到了很多的第三方Python库,包括PyQt.traits.traitsui.matplotlib.pyface.table.numpy.tv ...
- AC日记——教辅的组成 洛谷 P1231
题目背景 滚粗了的HansBug在收拾旧语文书,然而他发现了什么奇妙的东西. 题目描述 蒟蒻HansBug在一本语文书里面发现了一本答案,然而他却明明记得这书应该还包含一份练习题.然而出现在他眼前的书 ...
- BZOJ 3309 莫比乌斯反演
题目链接 https://www.lydsy.com/JudgeOnline/problem.php?id=3309 题意:定义f(n)为n所含质因子的最大幂指数,求 $Ans=\sum _{i=1} ...
- android应用无法接收到广播?
本篇文章记录Android应用无法接收到广播的几种case 1. 没有register 广播其实是一种订阅者模式,所以当然需要先register,register的方式有两种 1.1 through ...
- codeforces A. Wrong Subtraction
A. Wrong Subtraction time limit per test 1 second memory limit per test 256 megabytes input standard ...
- 分享tiny4412,emmc烧录u-boot, 支持fastboot模式烧写emmc
转载 : http://www.arm9home.net/read.php?tid-83474.html 本人是第一次在此发帖,希望大家多多支持,发帖目的是为了分享,分享的目的是传递开源的精神.Tin ...