自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 资源 (19)
  • 收藏
  • 关注

原创 IEqualityComparer for Linq Distinct() 通用类

根据国外的文章改的IEqualityComparer通用实现方式,由一个属性改为可以比较多个属性。源代码:using System;using System.Collections.Generic;using System.Linq;using System.Reflection;namespace Com.Jesus.Utility{    public clas

2012-06-30 16:28:50 1116

转载 将DataRow转换成相应的对象(通用以及泛型操作)

原文地址http://www.cnblogs.com/jasenkin/archive/2011/02/15/datarow_to_entity_or_generic_type.html相关文献:http://www.cnblogs.com/dyfzwj/archive/2011/04/16/2017916.html  一直以来对框架非常感兴趣,对大多数框架(目前本人看过的)来说一般分为三

2012-06-30 16:27:06 1106

原创 获取两个DataTable之间的差集、交集、并集集合(Except、Intersect、Union)

//比较两个数据源的交集         dt1.AsEnumerable().Intersect(dt2.AsEnumerable(), DataRowComparer.Default).CopyToDataTable();                     //获取两个数据源的并集        dt1.AsEnumerable().Union(dt2.AsEnumera

2012-06-29 12:56:24 5797

原创 SQLite 外键 级联更新 删除

自身关联CREATE TABLE Business (ID varchar(50) NOT NULL PRIMARY KEY,Name varchar(200) NOT NULL,"Parent_ID" varchar(50),ConfigurationPage boolean NOT NULL,FOREIGN KEY(Parent_ID) REFERENCES Business(ID)

2012-06-28 19:47:46 11585

原创 如何以编程方式编译使用 C# 编译器代码

c#中要运行文本文件中的c#代码。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Reflection;using System

2012-06-27 17:23:08 1067

原创 DevExpress.XtraLayout.LayoutControl 动态添加控件

// Create an item within a specified group,// bound to a specified data field with the specified editorprivate LayoutControlItem CreateItemWithBoundEditor(BaseEdit editor, object dataSource,   s

2012-06-05 19:19:22 14144 3

原创 使用DbProviderFactories操作SQLite

1. 错误1.0.77.0的bin中运行test.exe发生“未能加载文件或程序集“System.Data.SQLite, Version=1.0.76.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139”或它的某一个依赖项。生成此程序集的运行时比当前加载的运行时新,无法加载此程序集。”错误。加入:

2012-06-04 16:38:52 2892

转载 判断一个字符串中中文和字母或数字的个数

using System.Text.RegularExpressions;private string GetResult(string str){ int len=str.Length; str=Regex.Replace(str,"[a-zA-Z]",""); string result=(len-str.Length)+"个字母 "; len=str.Length;

2012-06-02 17:47:58 1216

原创 flowlayoutpanel 显示vertical scroll

设置 AutoScroll to true设置 WrapContents to false.

2012-06-02 15:49:06 2319

原创 Devexpress gridview 常用设置

自己用的this.gvSchemesDescription.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;            this.gvSchemesDescription.GridControl = this.gcSchemesDescription;

2012-06-02 15:26:23 2740

DevExpress ChartControl 画间断线

DevExpress ChartControl 画间断线

2023-03-12

iTextSharp读取表格数据.rar

网上搜的基于iTextSharp读取表格数据c#源码,Visual Studio 2015及以上可用。重写了iText.kernel.dll。 资源包含iText.kernel源码和读取表格数据源码,运行TableExtractionFromPDF项目可查看效果。 iText.kernel版本7.1.3.0 iText.io版本7.1.3.0 原文网址:https://www.codeproject.com/Tips/1262815/Extract-Tables-from-PDFs

2019-07-04

CATIA嵌入Winform窗体例子程序

CATIA嵌入Winform窗体例子程序,注意修改代码中“CATIA V5 用于学生”为本机CATIA主窗口名称

2018-03-16

DevExpress Diagram通过数据控制显示例子

DevExpress Diagram通过数据控制显示官方论坛里提供的例子,可以通过左侧树型控制显示Shape数量,可作为参考。 为什么现在资源分不能是0分?!

2017-09-25

DevExpress Widget AutoSize Demo

DevExpress Widget自动适应区域大小

2017-08-06

DevExpress GridControl中合并单元格

控制DevExpress中GridControl合并单元格方式

2017-02-16

DevExpress 编辑GridControl中合并单元格

DevExpress 编辑GridControl中合并单元格,要求版本号在15以上

2017-02-16

DevExpress GridControl Drag Drop

DevExpress GridControl 控件内部行之间实现拖拽,实际拖拽后行移动过程未实现,可根据实际情况编写,适用GridControl在 winform或DockPanel、UserControl中

2015-06-18

Excel+配色方案

Excel+配色方案,可视化Excel配色方案

2015-03-26

DevExpress中XtraScrollableControl随鼠标滚轮操作滚动条

DevExpress中XtraScrollableControl随鼠标滚轮操作滚动条

2014-05-14

c# PropertyGrid中复杂类型自定义显示

c# PropertyGrid中复杂类型自定义显示(装)自用

2014-04-07

c# 自定义序列化两种方法

c# custom serialization 自定义序列化两种方法:1、继承ISerializable,IDeserializationCallback 2、XML方式。(转) 自用

2014-04-07

winform 运行时控件更改大小

winform 运行时控件更改大小,VB.net 和C# 两种语言实现。注意,例子中picture控件的sizemode需设置成strech

2014-04-05

DevExpress TreeList 数据绑定

DevExpress TreeList 数据绑定,很简单,注意KeyFieldName ParentFieldName两个属性设置

2014-04-05

C# 图片 树形 表拖拽例子

C# 图片 树形 表拖拽例子 (转) 自用不骗分,不喜勿下

2014-04-05

c# 动态编译

c# 动态编译代码,有错误提示。(转)自用不为骗分

2014-04-05

C#本质论第3版(2010年版).pdf

c#4.0本质论(第三版) 周靖译 702页

2012-04-13

AForge示例源代码

AForge源码以及例子程序 AForge.Imaging - library with image processing routines and filters; AForge.Vision - computer vision library; AForge.Neuro - neural networks computation library; AForge.Genetic - evolution programming library; AForge.MachineLearning - machine learning library; AForge.Robotics - library providing support of some robotics kits; AForge.Video - set of libraries for video processing.

2011-02-09

计算机基本操作技能考试大纲

计算机基本操作技能考试大纲

2007-09-23

计算机操作基本技能样卷

计算机操作基本技能样卷

2007-09-23

空空如也

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

TA关注的人

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