通过重写WndProc方法,实现无边框窗体移动和禁止双击最大化的操纵。#region 移动窗体 /// /// 重写WndProc方法,实现窗体移动和禁止双击最大化 /// /// Windows 消息 protected...
分类:
移动开发 时间:
2015-04-09 19:01:54
阅读次数:
181
我们在做项目的时候,经常需要根据表或DataTable中某些字段来归类,为此就写出以下方法,帮组需要的人。#region 对DataTable进行分组 + public void GroupDataRows(IEnumerable source, List destination, string[]...
分类:
其他好文 时间:
2015-04-09 13:30:05
阅读次数:
113
工厂模式的解读: #region 店铺详情 /// /// Supporters the detail. /// /// public ActionResult ShopDedail() { return View(); } public ActionResult ShopDedailHelp...
分类:
其他好文 时间:
2015-04-08 14:31:01
阅读次数:
116
//刚刚接触,如有不对还望不吝指正 public static void StartUp() { #region 前期准备工作 ConnectionFactory factory = new ConnectionFacto...
#region==滑动解锁部分== private bool mousedown;//定义鼠标点击的bool值 private int curx;//定义鼠标点击时的位置X坐标 private void button11_MouseDown(object...
分类:
移动开发 时间:
2015-04-07 23:15:22
阅读次数:
181
登陆界面最主要的就是数据库访问,这里就不多讲界面设计了,
直接给代码:(这段代码加在登陆按钮的事件里)
#region 定义用户信息变量
string UserName = TextBox_User_Name.Text.Trim();
string UserPassword = TextBox_User_Password.Text.Trim(...
Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that surrounded region...
分类:
其他好文 时间:
2015-04-05 20:14:30
阅读次数:
147
使用苹果自带的地图框架,需要在项目中加载MapKit.framework(项目—TARGETS--Build Phases--Link Binary With Libraries),并在头文件中导入
#import
一、MKMapView的常用属性和方法
NSArray *annotations;//保存地图中的大头针
MKCoordinateRegion
region; /...
分类:
其他好文 时间:
2015-04-05 12:03:02
阅读次数:
137
最近在处理Webservice文档的时候,因为是未格式化的,需要处理,所以有了以下代码。#Region "Xml字符串转换成格式化的XML文件" 'txt_Result.Text = StrToXml(txt_Result.Text) Public Function StrToX...
分类:
Web程序 时间:
2015-04-05 10:23:05
阅读次数:
145
1、编写日志2、本地文件的读取和写入3、Base64与图片的互相转换Imports System.IOImports System.TextPublic Class Cls_File#Region "编写日志" '根目录 Public Shared strCurrentPath As S...
分类:
Web程序 时间:
2015-04-05 10:22:12
阅读次数:
149