自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (8)
  • 收藏
  • 关注

空空如也

C# wpf 多线程

The CSWPFThreading sample project illustrates two WPF threading models. The first one divides a long-running process into many snippets of workitems. Then the dispather of WPF will pick up the workitems one by one from the queue by their priority. The background workitem does not affect the UI * operation, so it just looks like the background workitem is processed by * another thread. But actually, all of them are executed in the same thread. * This trick is very useful if you want single threaded GUI application, and * also want to keep the GUI responsive when doing expensive operations in * the UI thread.

2016-02-04

C# OnenoteOCR 封装库

1、安装office 2010或2013中的Onenote 2、在你的项目中引用封装库 使用 using (var ocrEngine = new OnenoteOcrEngine()) using (var image = Image.FromFile(imagePath)) { var text = ocrEngine.Recognize(image); if (text == null) Console.WriteLine("nothing recognized"); else Console.WriteLine("Recognized: " + text); }

2014-12-12

cache数据库资料2

由于cache的资料比较少,建议看帮助。本资料能够让你快速了解cache数据库。

2010-04-20

cache数据库资料1

由于cache的资料比较少,建议看帮助。本资料能够让你快速了解cache数据库。

2010-04-20

Cache数据库面向对象软件开发教程

有如下SQL 可得到所有职员和其所在公司: SELECT Sample.Employee.Name AS EmpName, Sample.Company.Name AS CompName FROM Sample.Employee LEFT OUTER JOIN Sample.Company ON Sample.Employee.Company = Sample.Company.ID 用隐式连接可方便得改写为: SELECT Name AS EmpName, Company->Name AS CompName FROM Sample.Employee

2009-12-22

oracle数据库恢复工具(dbview for oracle 2.7.28.155 )

dbview for oracle是一个oracle数据恢复工具,能在没有安装oracle数据库的电脑上,通过对数据库的数据文件进行分析, 得到oracle的数据、表、视图、 函数、存储

2009-11-26

oracle数据库恢复工具(dbview for oracle)

dbview for oracle是一个和DUL类似的oracle数据恢复工具,能在没有安装oracle数据库的电脑上,通过对数据库的数据文件进行分析, 得到oracle的数据、表、视图、 函数、存储过程、序列等数据库对象,最后使用OCI功能将这些数据库对象导入oracle数据库的软件。

2009-04-08

dbview for oracle

dbview for oracle是一个oracle数据恢复工具,能在没有安装oracle数据库的电脑上,通过对数据库的数据文件进行分析, 就能看到数据库的数据和对象等。

2009-03-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除