会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
紫晶城
生于忧患,死于安乐。
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
9
下一页
2019年3月21日
WPF DEV gridcontrol当前项的数据导出为mdb文件
摘要: /// /// 导出为mdb /// /// /// private void btnExportMdb_Click(object sender, RoutedEventArgs e) { try { ...
阅读全文
posted @ 2019-03-21 10:10 紫晶城
阅读(378)
评论(0)
推荐(0)
编辑
2019年3月13日
WPF dev 获取gridControl筛选后的数据
摘要: GridControl.DataController.GetAllFilteredAndSortedRows();
阅读全文
posted @ 2019-03-13 20:29 紫晶城
阅读(687)
评论(0)
推荐(0)
编辑
2019年2月27日
WPF DEV dxc:ChartControl 柱状图
摘要: 先上效果图: 后台代码: 使用方法:
阅读全文
posted @ 2019-02-27 15:43 紫晶城
阅读(825)
评论(0)
推荐(0)
编辑
2019年2月24日
WPF 重写ListBox(透明效果)
摘要: 效果:
阅读全文
posted @ 2019-02-24 17:02 紫晶城
阅读(1085)
评论(0)
推荐(0)
编辑
2019年2月15日
WPF 后台重写 DataTemplate
摘要: 重写表头
阅读全文
posted @ 2019-02-15 15:23 紫晶城
阅读(925)
评论(0)
推荐(0)
编辑
2019年2月12日
WPF 去掉Drag a column header here to group by that column
摘要: 主要是:
阅读全文
posted @ 2019-02-12 14:54 紫晶城
阅读(428)
评论(0)
推荐(0)
编辑
2019年1月29日
c# 对DataTable进行分组group by
摘要: var resultGroupedByColumn = dt.Rows.Cast().GroupBy(r => r.ItemArray[0]);//对索引为0的一列进行分组,结果是集合
阅读全文
posted @ 2019-01-29 10:15 紫晶城
阅读(6661)
评论(0)
推荐(0)
编辑
2019年1月18日
c# ref与out用法
摘要: class Program { static void Main(string[] args) { //普通 : int k1 = 1; int result1 = Test1(k1, 2); Console.WriteLine("/*普通:*/"); Console.WriteLine(resul
阅读全文
posted @ 2019-01-18 09:39 紫晶城
阅读(233)
评论(0)
推荐(0)
编辑
2019年1月14日
WPF canvas设置旋转角度和偏移位置
摘要: /// /// 设置旋转角度和位置 /// /// 角度 /// X轴偏移位置 /// X轴偏移位置 /// public TransformGroup SetAngleXY(double Angle, double CenterX, double Cente...
阅读全文
posted @ 2019-01-14 14:15 紫晶城
阅读(2263)
评论(0)
推荐(0)
编辑
2019年1月8日
WPF 流加载
摘要: /// /// datatable分页 /// /// 源datatable /// 第几页 /// 每页记录数 /// public DataTable GetPagedTable(DataTable dt, int PageIndex, int PageSiz...
阅读全文
posted @ 2019-01-08 16:45 紫晶城
阅读(294)
评论(0)
推荐(1)
编辑
VS 代码片段集
摘要: 片段1:用于线程执行代码,耗时操作时加载Loging; <?xml version="1.0" encoding="utf-8"?> <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <
阅读全文
posted @ 2019-01-08 09:28 紫晶城
阅读(316)
评论(0)
推荐(0)
编辑
2019年1月7日
postgresql copy的使用方式
摘要: 方法一: 将数据库表复制到磁盘文件: copy "Test" to 'G:/Test.csv' delimiter ',' csv header encoding 'GBK'; 从磁盘文件复制到表: copy "Test" from 'G:/Test.csv' delimiter ',' csv h
阅读全文
posted @ 2019-01-07 10:09 紫晶城
阅读(6009)
评论(5)
推荐(0)
编辑
2018年11月7日
WPF 异步刷新页面,创建定时器
摘要: #region 异步,刷新页面 /// /// 页面加载事件 /// /// /// private void UserControl_Loaded(object sender, RoutedEventArgs e) { dispatch...
阅读全文
posted @ 2018-11-07 10:55 紫晶城
阅读(1094)
评论(0)
推荐(1)
编辑
2018年10月30日
postgre 查询同表中的,该节点写的所有子节点
摘要: SELECT catalogid, foldername, parentid, folderpath FROM public.ic_catalog; --查询同表中的,该节点写的所有子节点 WITH RECURSIVE T(catalogid,foldername,parentid) AS( SELECT catalogid,foldername,parentid FROM ic_...
阅读全文
posted @ 2018-10-30 17:33 紫晶城
阅读(658)
评论(0)
推荐(0)
编辑
2018年10月26日
c# 测试运行时间毫秒级
摘要: long currentMillis = (DateTime.Now.Ticks - (new DateTime(1970, 1, 1, 0, 0, 0, 0)).Ticks) / 10000; /*代码*/ long currentMillis1 = (DateTime.Now.Ticks - (new DateTime(1970, 1, 1, 0, 0, 0, 0)).Ticks) /...
阅读全文
posted @ 2018-10-26 10:13 紫晶城
阅读(645)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
···
9
下一页
公告