原文链接: http://blog.csdn.net/wxq1987525/article/details/74614611、设置CListCtrl选中行m_list.SetItemState( nIndex, LVIS_FOCUSED | LVIS_SELECTED, LVIS_FOCUSED |...
分类:
其他好文 时间:
2015-08-07 10:55:06
阅读次数:
162
定制UITableView中UITableViewCell点击颜色:self.selectionStyle=UITableViewCellSelectionStyleDefault;UIView*selectedBackgroundView=[[UIViewalloc]init];selectedBackgroundView.backgroundColor=[UIColorcolorWithHexString:@"#efefef"];self.selectedBackgroundView=se..
分类:
其他好文 时间:
2015-08-06 18:47:05
阅读次数:
133
1.selector中全部属性
2.常用的属性分析
android:state_accessibility_focused是否能够获取焦点
android:state_selected是否选中
android:state_focused是否获得焦点
android:state_pressed是否点击
android:state_enabled设置是否响应事件,指所有事件
...
分类:
移动开发 时间:
2015-08-06 16:56:46
阅读次数:
174
ACL 2015 selected paper 概述(1)开完 ACL 2015 大会,选了自己感兴趣的几十篇论文,大部分是自己已经读过的,做了一些概述。相信里面有很多错误,欢迎指正。另外,图文并茂版本在公众号查看,长微博复制图片也许有很多错误显示不出来。1. Text to 3D Scene Ge...
分类:
其他好文 时间:
2015-08-04 20:50:46
阅读次数:
279
HTML: JS:$('#select').change(function(){ var oV=$(this).find('option:selected').val(); if(oV==0){ //.......... }else if(oV==1){ //...........
分类:
Web程序 时间:
2015-08-03 16:15:02
阅读次数:
245
selected 不能应用到textview之类的控件上,
因为textview之类的控件根本就不能选择 select 本为选择的意思,
如果你是radiobutton那就得用checked才会有效。...
分类:
其他好文 时间:
2015-08-03 11:35:32
阅读次数:
122
[button setBackgroundImage:backImage forState:UIControlStateNormal]; [button setBackgroundImage:backImage forState:UIControlStateHighlighted]; ...
分类:
其他好文 时间:
2015-07-28 20:19:54
阅读次数:
189
function selectAdd(selectId,value,text){$("#"+selectId).append(""+text+"");}function selectDel(selectId){$("#"+selectId+" option:selected").remove();}...
分类:
移动开发 时间:
2015-07-21 21:52:45
阅读次数:
128
var proxy = new EventProxy();var status = "ready";var select = function(callback){proxy.once("selected",callback);if(status == "ready"){status = "pend...
分类:
数据库 时间:
2015-07-21 12:29:43
阅读次数:
165
下拉列表在网页中也常会用到,它可以有效的节省网页空间。既可以单选、又可以多选。如下代码:讲解:1、value:2、selected="selected":设置selected="selected"属性,则该选项就被默认选中。在浏览器中显示的结果:
分类:
Web程序 时间:
2015-07-20 19:04:36
阅读次数:
123