码迷,mamicode.com
首页 > 2017年02月17日 > 全部分享
WPF 修改数据后更新UI
ObservableCollection 只有项添加或删除才会更新UI要想属性发生变动后立刻更新到UI,必须继承 INotifyPropertyChanged 接口,示例如下 public class SurfaceDetail: INotifyPropertyChanged { //不更新到界面的... ...
分类:Windows程序   时间:2017-02-17 19:10:32    阅读次数:319
多表关联时,新增数据要考虑的问题。
有多张表有关联关系时,新增关系表RefOrganizationCustomer的数据时,如何获取Customer和Organiaztion的ID!!! mybatis的<insert>时,加上useGeneratedKeys属性,设为true,KeyProperty的值对应的是customer表对应 ...
分类:其他好文   时间:2017-02-17 19:09:40    阅读次数:313
一道sql 关于pivot的面试题
分析:其实它是对时间月份行转列的 表结构设计: 结果: select Name,moth,ISNULL([01],0) as Value1,ISNULL([02],0) as Value2,ISNULL([03],0) as Value3 from (select a.Name,CONVERT(va ...
分类:数据库   时间:2017-02-17 19:08:55    阅读次数:234
线程的优先级
设置线程的优先级 setPriority()设置线程的优先级 ...
分类:编程语言   时间:2017-02-17 19:07:03    阅读次数:206
Bzoj3676 [Apio2014]回文串
Description 考虑一个只包含小写拉丁字母的字符串s。我们定义s的一个子串t的“出 现值”为t在s中的出现次数乘以t的长度。请你求出s的所有回文子串中的最 大出现值。 考虑一个只包含小写拉丁字母的字符串s。我们定义s的一个子串t的“出 现值”为t在s中的出现次数乘以t的长度。请你求出s的所有 ...
分类:Windows程序   时间:2017-02-17 19:04:51    阅读次数:278
被遗忘的设计模式——空对象模式(Null Object Pattern)
一、Pattern name Provide an object as a surrogate for the lack of an object of a given type. The Null Object provides intelligent do nothing behavior, h ...
分类:其他好文   时间:2017-02-17 19:03:58    阅读次数:214
jsp 的四个作用域 :page、request、session和application的区别 .
原文入口:点这里~ 1、区别: 1.page指当前页面有效。在一个jsp页面里有效 2.request 指在一次请求的全过程中有效,即从http请求到服务器处理结束,返回响应的整个过程,存放在HttpServletRequest对象中。在这个过程中可以使用forward方式跳转多个jsp。在这些页面 ...
分类:移动开发   时间:2017-02-17 19:03:18    阅读次数:313
对DataTable进行分组
因为程序的特殊情景,需要在sql查出来的DataTable进行分组,DataTable分组可以使用linq,也可以自己写分组程序。 linq相对简单: cmd.CommandText = sql; cmd.CommandType = CommandType.Text; cmd.CommandTime ...
分类:其他好文   时间:2017-02-17 19:03:26    阅读次数:216
【 js 算法类】数组去重
以 var arr = [1,2,3,1]; 作为测试用例 方法一:双循环 (时间复杂度比较高,性能一般。) A、(1) 输出 newArr 结果: B、(2) 输出 newArr 结果: tip: j = ++ i; 等价于 j = j+1; i = i+1; 整体思路就是 如果是重复元素,则跳过 ...
分类:编程语言   时间:2017-02-17 19:02:19    阅读次数:292
c# mvc 路由规则学习片段
1、初步接触mvc 路由 routes.MapRoute( "CM", "CM/{controller}/{action}/{id}/", new { controller = "Home", action = "Index", id = UrlParameter.Optional } ); 匹配: ...
分类:Windows程序   时间:2017-02-17 19:01:52    阅读次数:209
礼让线程
礼让线程 yield让出cpu ...
分类:编程语言   时间:2017-02-17 19:01:05    阅读次数:171
守护线程
守护线程 setDaemon() Thread t1 = new Thread() { public void run() { for(int i = 0; i < 50; i++) { System.out.println(getName() + "...aaaaaaaaaaaaaaaaaaaaa... ...
分类:编程语言   时间:2017-02-17 19:00:03    阅读次数:179
nginx-1.11.10 download, install, start and stop
Environment:(CentOS 7) Download: Installation: (tree command can help you understand the construction of the directory) Start: Default Pages:(or http: ...
分类:其他好文   时间:2017-02-17 19:00:23    阅读次数:284
JS对象的使用
JS对象使用 ...
分类:Web程序   时间:2017-02-17 18:59:36    阅读次数:239
DOM访问HTML元素2
DOM访问HTML元素 zhangsan lisi xiaohong xiaomei tom sherry ...
分类:Web程序   时间:2017-02-17 19:01:02    阅读次数:259
JS对象的创建
JS对象的创建 ...
分类:Web程序   时间:2017-02-17 18:57:51    阅读次数:215
jsonp_百度联想
<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title></head><body>请输入关键词<input id="keyword" type="text" value="" onkeyup="suges ...
分类:Web程序   时间:2017-02-17 19:00:28    阅读次数:230
822条   上一页 1 ... 15 16 17 18 19 20 21 ... 49 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!