- 博客(7)
- 资源 (1)
- 收藏
- 关注
原创 阿里巴巴开放平台
/// <summary> /// 请求签名 /// </summary> /// <param name="urlPath"></param> /// <param name="paramDic"></param> /// <...
2019-03-15 11:07:37 2017 1
原创 菜鸟打印自定义区域设置
选择商家自定义区域建一个物流模板2.2.设置固定打印区域和动态打印区域,然后保存,发布3.复制模板url 地址 4.然后调用5.测试效果
2018-07-16 17:48:50 5391 4
原创 C# List,DataTable 去除重复
public static IEnumerable<T> RemovalRepetition<T, R>(this IEnumerable<T> obj, Func<T, R> attribute) { return obj.Cast<T>().GroupBy(attribute).Select(...
2018-04-26 14:14:59 474
原创 Dev TreeList 绑定
1.Datasource (动态)绑定: 优点,绑定数据源非常简单,而且更新节点非常方便,直接更新数据库,然后刷新就可以了,缺点:无论是展开节点,还是修改节点内容:非常卡!非常卡!非常卡!treeList1.KeyFieldName = "p_id"; //指定主键idtreeList1.ParentFieldName = "p_parentid";//指定父键idtreeList1.DataS...
2018-04-13 12:33:21 1814
原创 DevExpress.XtraEditors.Repository.RepositoryItemTreeListLookUpEdit
DevExpress.XtraEditors.Repository.RepositoryItemTreeListLookUpEdit SheLook = new DevExpress.XtraEditors.Repository.RepositoryItemTreeListLookUpEdit(); SheLook.TreeList.ParentFieldName = "s...
2018-04-09 09:57:13 1581
原创 任意格式转换为时间格式
DateTime time = DateTime.ParseExact("17-10-01 01:01", "yy-MM-dd HH:mm", CultureInfo.CurrentCulture)
2017-10-10 12:21:13 530
原创 ListToDataTable
public static DataTable ToDataTable(this IEnumerable varlist) { DataTable dtReturn = new DataTable(); // column names PropertyInfo[] oProps = null;
2017-07-19 11:49:22 387
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人