摘要:
asp.net 验证正则表达式整数或者小数:^[0-9]+\.{0,1}[0-9]{0,2}$只能输入数字:"^[0-9]*$"。只能输入n位的数字:"^\d{n}$"。只能输入至少n位的数字:"^\d{n,}$"。只能输入m~n位的数字:。"^\d{m,n}$"只能输入零和非零开头的数字:"^(0... 阅读全文
摘要:
Senparc.Weixin.MP SDK从一开始就坚持开源的状态,这个过程中得到了许多朋友的认可和支持。目前SDK已经达到比较稳定的版本,这个过程中我觉得有必要整理一些思路和经验,和大家一起分享。也欢迎大家的补充!SDK还在不断优化升级中,开源项目见:https://github.com/Jeff... 阅读全文
摘要:
新建一个Single View Application添加一个空类如下:using System;using UIKit;using Foundation;namespace BasicTable{ public class TableSource : UITableViewSource { st... 阅读全文
摘要:
新建空工程如图添加一个MainStoryboard如图设置启动项为MainStoryboard重写AppDelegate的Window方法public override UIWindow Window { get; set; } 从工具箱拖3个View Controlle... 阅读全文
摘要:
新建一个空工程,如图新建类using System;using UIKit;namespace TabbedApplication{ public class TabController : UITabBarController { UIViewController tab1,tab2,tab3;... 阅读全文
摘要:
新建一个Single View Application项目添加程序集MonoTouch.Dialog.dll引用删除MainStoryboard.storyboard添加空类Task.csusing System;namespace APITest{ public class Task { pub... 阅读全文
摘要:
using System;using UIKit;using Foundation;using CoreGraphics;namespace GraphicsAnimation{ public class DrawnImageView : UIView { public DrawnImageVie... 阅读全文
摘要:
usingSystem;usingUIKit;usingCoreGraphics;usingFoundation;namespaceGraphicsAnimation{ publicclassTriangleView:UIView { CGPathpath; publicTriangleView... 阅读全文
摘要:
导航栏的设置标题publicHelloWorldScreen () : base ("HelloWorldScreen", null){ this.Title="World!"; }隐藏导航栏public override void ViewWillAppear (bool animated) { ... 阅读全文
摘要:
C#解析json JSON(全称为JavaScript Object Notation) 是一种轻量级的数据交换格式。它是基于JavaScript语法标准的一个子集。 JSON采用完全独立于语言的文本格式,可以很容易在各种网络、平台和程序之间传输。JSON的语法很简单,易于人阅读和编写,同时也易于... 阅读全文