一.TextBlock:这个控件其实就是Label控件。<TextBlockx:Name="PageTitle"Text="page name"Margin="-3,-8,0,0"Style="{StaticResourcePhoneTextTitle1Style}"TextWrapping="Wrap"/>Style:设置字体、字色、大小等样式,用StaticResource方式可以绑定预设的样式。TextWrapping:设置是否自动换行。Text:在控件上要显示的文字。二.Ch Read More
移动互联网项目和传统互联网有一些类似的地方,但是也有许多不同之处;另外创业公司需要做到的是快速开发,快速发布,快速迭代,下面是开发管理中的一些经验总结。1、每天早上快速立会很有用,每个人总结前一天的工作和当天的工作计划,及时沟通信息,交流开发中问题,总共时间不超过15分钟;2、每周一个版本是良好的开发节奏,要快速添加功能,及时收集用户反馈,及时改进;3、严格控制版本cc(code complete,也就是提测)时间,保证有充分测试的时间;4、iPhone和Android cc的时间要错开,以缓解测试压力;5、严格测试和QA,移动产品发版后如果有严重问题要弥补,必须要在短时间内发布新版本,代价. Read More
/// <summary> /// 二分查找算法 /// </summary> /// <param name="arr">要查找的数组</param> /// <param name="sel">要查找的值</param> /// <returns></returns> protected string GetValue(string[] arr, string sel) { int langth = arr.Length;//数组的长度 int m... Read More
using (TransactionScope scope = new TransactionScope()){ //创建事物对象 try { //执行事务操作的相关代码 scope.Complete(); //提交事物 } catch (Exception ex) { throw ex; } //抛出异常 finally { scope.Dispose(); } //回滚事物} Read More
static void Main(string[] args){ if (args.Length == 0 || String.IsNullOrEmpty(args[0])) { Console.WriteLine("No filename provided."); return; } string filepath = args[0]; if (Path.GetFileName(filepath) == args[0]) { filepath = Path.Combine(Environment.CurrentD... Read More
//第一种方法:Response.ClearContent();Response.ClearHeaders();Response.ContentType = "Application/msword";string s = Server.MapPath("C#语言参考.doc");Response.WriteFile("C#语言参考.doc");Response.Write(s);Response.Flush();Response.Close(); //第二种方法:Response.ClearContent();Response.Cle Read More
private void SetFormCircle() { int radian = 4; //圆弧角的比率,可以自己改变这个值看具体的效果int w = this.Width; //窗体宽int h = this.Height; //窗体高 //对于矩形的窗体,要在一个角上画个弧度至少需要2个点,所以4个角需要至少8个点Point p1 = new Point(radian, 0); Point p2 = new Point(w ? radian, 0); Point p3 = new Point(w, radian); Point p4 = n... Read More
using System;using System.Collections.Generic;using System.Text;using System.Xml; namespace NetProject.Property{ public class XmlDoc { /// <summary> /// 创建Xml文件 /// </summary> /// <param name="xmlPath">创建文件路径</param> /// <param name="element"></pa Read More
//参数:d表示要四舍五入的数;i表示要保留的小数点后为数。 /// <summary> /// 四舍五入 /// </summary> /// <param name="d">计算的数</param> /// <param name="i">要保留的小数点后为数</param> /// <returns>四舍五入结果</returns> public static double Round(double d, int i) { if (d >= 0) Read More
public void sort(int[] array) { int length = array.Length; for (int i = 0; i < length - 1; i++) { for (int j = length - 1; j > 1; j--) { if (array[j] < array[i - 1]) { int tmp = array[j]; array[... Read More