
WPF
文章平均质量分 64
czf2505
这个作者很懒,什么都没留下…
展开
-
WPF 自动调整控件的大小和位置,当窗体大小发生变化的时候
http://www.cnblogs.com/grenet/archive/2010/11/14/1877071.html转载 2013-11-28 17:33:55 · 11450 阅读 · 0 评论 -
WPF MVVM DataGrid SelectedItem binding 无效
如果在 binding的dataGrid之前,多了以下代码 -->则bindingshi原创 2014-06-03 11:46:32 · 2938 阅读 · 0 评论 -
MVVM 开发模式 dataGrid中嵌入combobox,如何使用ComboBox.ItemTemplate
1 XAML 文件原创 2014-05-30 12:46:04 · 2142 阅读 · 0 评论 -
如果需要改动源代码生成器中的代码,如何做到,下次重新生成的代码也具有额为添加的特殊函数
方案1 新建一个类,将新的方法写在新的类中原创 2014-05-29 10:27:31 · 742 阅读 · 0 评论 -
WPF combobox 的两种绑定方式
1 传统的 disPlayMemberPath 的方式原创 2014-05-28 10:04:54 · 10448 阅读 · 0 评论 -
WPF 自定义带有数据源的combobox控件
1 自定义控件的代码原创 2014-05-26 15:17:17 · 1592 阅读 · 0 评论 -
WPF 数据绑定 combobox
http://www.cnblogs.com/mantian/archive/2013/01/22/2871775.html点击打开链接转载 2014-05-26 14:50:23 · 921 阅读 · 0 评论 -
WPF 自定义控件类型
类型一 : 自定义控件包含多个基本原创 2014-05-26 14:33:57 · 606 阅读 · 0 评论 -
wpf 后台绑定数据 binding
http://blog.youkuaiyun.com/h82258652/article/details/20577209点击打开链接转载 2014-05-26 14:28:50 · 2440 阅读 · 0 评论 -
MVVM开发,前台代码,后台代码
1 前台代码 自定义控件<UserControl x:Class="uc_WSClientMasterByMVVM" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2原创 2014-05-21 14:03:35 · 739 阅读 · 0 评论 -
WPF MVVM开发模式下,有关textbox,combobox,dataGrid的前台页面代码
<UserControl x:Class="uc_WSClientMasterByMVVM" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"原创 2014-05-16 16:46:28 · 1288 阅读 · 0 评论 -
WPF, ToolkitChart显示图表
在项目运行之前,先添加对WPFToolkit.dll和System.Windows.Controls.DataVisualization.Toolkit.dll这两个Dll的引用,不过这两个dll的版本最好是一致的,而且是最新的。在不同的地方下载的dll,有可能项目运行失败1 前台代码<Window x:Class="WpfToolkitChart.MainWindow"原创 2014-01-16 09:20:31 · 3249 阅读 · 0 评论 -
wpf 根据dataTable 自动创建报表显示数据,主要运用DynamicDataDisplay
在项目运行之前添加对DynamicDataDisplay.dll的引用1 前台代码<Window x:Class="WpfDataToReport" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/原创 2014-01-13 19:08:51 · 1923 阅读 · 0 评论 -
wpf 根据DataTable在后台自动创建DataGrid,而且可以对数据进行初步处理,显示差异
1 前台代码<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/b原创 2014-01-13 19:00:59 · 1709 阅读 · 0 评论 -
WPF DataGrid的数据源以DataTable设定
1 前台代码 后台代码 Dim objDA As New System.Data.SqlClient.SqlDataAdapter Dim objDS As New System.Data.DataSet Dim strSql = "select *原创 2013-11-29 16:44:13 · 5777 阅读 · 1 评论 -
WPF DataGrid之自动创建列
1 前台代码 2 后台代码 clsPerson person1=new clsPerson (); clsPerson person2= new clsPerson(); person1.id = 1; person1.name = "jimmy"原创 2013-11-29 00:11:53 · 3095 阅读 · 0 评论 -
wpf 日期时间格式设置
http://blog.youkuaiyun.com/wangsui99/article/details/7272610转载 2014-07-14 09:29:16 · 1959 阅读 · 0 评论