码迷,mamicode.com
首页 >  
搜索关键字:custom cell    ( 7916个结果
ASP.NET中处理自定义错误的最佳方式
原文:http://www.cnblogs.com/dudu/p/aspnet_custom_error.html要在ASP.NET中处理好自定义错误(Custom Errors)首先要抛弃使用web.config\customErrors。 使用web.config\customErrors...
分类:Web程序   时间:2014-06-27 21:49:18    阅读次数:223
[LeetCode] Word Search [37]
题目Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adja...
分类:其他好文   时间:2014-06-27 17:25:52    阅读次数:225
界面绚丽的SilverLight日历日程控件MindFusion.Scheduling
MindFusion.Scheduling for Silverlight 控件结合了丰富的时间管理功能并且具有绚丽的界面,是一款理想的用于创建所有类型的时间表、行程安排表以及日历日程的SilverLight控件。具体功能:日程控件:支持定义custom-typed 事件支持循环事件支持存放在XML...
分类:Web程序   时间:2014-06-26 20:28:20    阅读次数:254
[WPF] 将普通的Library工程,改造成WPF Custom Control 的Library
1. 添加References PresentationCore PresentationFramework System.Xaml WindowsBase2. 修改AssemblyInfo.xsusing System.Windows;[assembly: System.Windows...
分类:其他好文   时间:2014-06-26 19:09:55    阅读次数:139
pio设置单元格式
第一种:日期格式 cell.setCellValue(new Date(2008,5,5)); //set date format HSSFCellStyle cellStyle = demoWorkBook.createCellStyle(); HSSFDataFo...
分类:其他好文   时间:2014-06-26 18:15:38    阅读次数:192
UITableViewCell滑动删除及移动
实现Cell的滑动删除, 需要实现UITableView的代理UITableViewDelegate中如下方法://先要设Cell可编辑- (BOOL)tableView:(UITableView*)tableView canEditRowAtIndexPath:(NSIndexPath*)inde...
分类:移动开发   时间:2014-06-26 17:53:38    阅读次数:148
控制系统音量,自定义MPVolumeView
最近有一个需求,就是控制系统的音量,我们都知道原理在mediaPlayer.framework框架下,有方法 // The current volume of playing music, in the range of 0.0 to 1.0. // This property is deprecated -- use MPVolumeView for volume control instea...
分类:其他好文   时间:2014-06-26 10:44:33    阅读次数:324
2014-06-24 UITableView
1.针对cell上按钮(UIButton)的不响应SEL 这个问题一般是由xib导致的,当从xib中load cell的时候,cell会自动在xib上加一层contentView,所以xib中的按钮等控件都被contentView挡住了,可以将contentView的backgroundColor....
分类:其他好文   时间:2014-06-25 11:50:53    阅读次数:189
改变cell的背景颜色
#defineDARK_BACKGROUND[UIColorcolorWithRed:151.0/255.0green:152.0/255.0blue:155.0/255.0alpha:1.0];-(void)tableView:(UITableView*)tableViewwillDisplayCell:(UITableViewCell*)cellforRowAtIndexPath:(NSIndexPath*)indexPath{cell.backgroundColor=DARK_BACKGROUND;}
分类:其他好文   时间:2014-06-25 10:48:56    阅读次数:264
iOS开发 日常错误积累
1、ios7 tableviewcell上面添加一个view,view上面有button,点击button不执行button的点击事件 解决办法: self.view.userInteractionEnabled = YES; [cell.contentView addSubview:self.view] 主要问题是cell的高度没有view本事的高度高,造成view没有完全在ce...
分类:移动开发   时间:2014-06-25 07:12:58    阅读次数:263
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!