public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void comboBox3_Sel...
分类:
Web程序 时间:
2015-07-02 13:43:45
阅读次数:
127
基于wheelView的自定义日期选择器项目要求效果图:要求 “6月20 星期五” 这一项作为一个整体可以滑动,”7时”、”48分”分别作为一个滑动整体。系统自带的DatePicker、TimePicker大家都知道,只有这种效果:百度了很多,试了NumberPicker等都不行,本来打算自己写。网友推荐了一个开源组件WheelView,下下来试了试,发现他已经定义的很完善了,在他的基础上拓展很容...
分类:
移动开发 时间:
2015-06-27 10:03:40
阅读次数:
2592
效果如下:ViewController.h1 #import 2 3 @interface ViewController : UIViewController4 @property (strong, nonatomic) UIDatePicker *datePChoice;5 6 @endViewC...
分类:
其他好文 时间:
2015-06-15 22:07:30
阅读次数:
130
效果如下:ViewController.h1 #import 2 3 @interface ViewController : UIViewController4 @property (strong, nonatomic) UIDatePicker *datePChoice;5 6 @endViewC...
分类:
其他好文 时间:
2015-06-15 22:02:50
阅读次数:
185
效果如下:ViewController.h1 #import 2 3 @interface ViewController : UIViewController4 @endViewController.m 1 #import "ViewController.h" 2 3 @interface Vie....
分类:
其他好文 时间:
2015-06-15 22:01:47
阅读次数:
177
十分不错的日期选择器,界面也十分和谐,支持单选、多选、范围选择、弹框显示、自定义样式等操作,集成起来也十分简单,有兴趣的可以关注作者Github:https://github.com/square/android-times-square...
分类:
移动开发 时间:
2015-06-12 10:08:05
阅读次数:
209
DatePicker继承自FrameLayout类,日期选择控件的主要功能是向用户提供包含年、月、日的日期数据并允许用户对其修改。如果要捕获用户修改日期选择控件中的数据事件,需要为DatePicker添加OnDateChangedListener监听器。示例:一、全局模式1、布局文件 1 2 6.....
分类:
移动开发 时间:
2015-06-11 00:09:56
阅读次数:
375
birthDate = [[UIDatePicker alloc] initWithFrame:CGRectMake(0,500/2,self.view.frame.size.width, 88/2)]; birthDate.datePickerMode = UIDateP...
分类:
其他好文 时间:
2015-05-28 19:54:04
阅读次数:
160
JQuery日期选择器插件之date-input
官方网站:http://jonathanleighton.com/projects/date-input/
下载地址:
http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
http://github.com/jonleighton/d...
分类:
Web程序 时间:
2015-05-26 16:13:02
阅读次数:
206
在.h文件里加入UITextFieldDelegate@property(nonatomic,retain) UITextField * phoneNumberTextField;@property(retain,nonatomic)UIDatePicker *datePicker;在.m文件vie...
分类:
移动开发 时间:
2015-05-26 16:00:10
阅读次数:
9806