上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 57 下一页
  2011年8月2日
摘要: 可通过以下语句来设置文本的对齐方式:StringFormat sF = new StringFormat()sF.Alignment = StringAlignment.Far;sF.LineAlignment = StringAlignment.Far;代码:、View Code privatevoidForm1_Paint(objectsender,PaintEventArgse){Graphicsg=e.Graphics;Fontf=newFont("Aris",15,FontStyle.Italic);strings="thisismyname" 阅读全文
posted @ 2011-08-02 13:01 wtq 阅读(661) 评论(0) 推荐(0) 编辑
摘要: 可通过StringFormat sF = new StringFormat(StringFormatFlags.DirectionVertical);以及使用 g.DrawString(s, f, Brushes.Black, rf,sF);来绘制竖向文本 View Code privatevoidForm1_Paint(objectsender,PaintEventArgse){Graphicsg=e.Graphics;Fontf=newFont("Aris",15,FontStyle.Italic);strings="thisismyname,andwhat& 阅读全文
posted @ 2011-08-02 13:00 wtq 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 1,主要利用MessageString()这个函数来实现自动换行。截图如下:代码如下:View Code //绘制有边框的字体,并自动换行privatevoidForm1_Paint(objectsender,PaintEventArgse){Graphicsg=e.Graphics;Fontf=newFont("Aris",15,FontStyle.Italic|FontStyle.Strikeout);strings="thisismyname,andwhataboutyou,oknoproblems,everyisok,somethingisgoods,pr 阅读全文
posted @ 2011-08-02 08:25 wtq 阅读(3277) 评论(0) 推荐(1) 编辑
  2011年8月1日
摘要: 代码如下;View Code stringpath=@"c:\temp\wtq_1.txt";byte[]byteDate=newByte[1000];char[]c;byte[]d;try{using(FileStreamfs=newFileStream(path,FileMode.Create,FileAccess.ReadWrite)){stringstr="我叫***,为什么我使用这种方式不会乱码";c=str.ToCharArray();Console.WriteLine(c.Length);Console.ReadLine();foreach 阅读全文
posted @ 2011-08-01 21:55 wtq 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 1.php,mysql ,apache 相关链接:php,mysql apache 相关链接2.apache常见问题的解决方法 3.apache设置教程 +4.当使用网址访问php文件时,apache突然停止,可以考虑把php.ini中的;extension=php_pdo_mssql.dll 分号加上。 阅读全文
posted @ 2011-08-01 10:44 wtq 阅读(275) 评论(0) 推荐(0) 编辑
  2011年7月31日
摘要: 如图:代码如下:View Code stringpath=@"c:\temp\MyTest.txt";stringpathCopy=@"c:\temp\MyTestCopy.txt";if(File.Exists(path)){File.Copy(path,pathCopy,true);File.Delete(path);} 阅读全文
posted @ 2011-07-31 01:09 wtq 阅读(476) 评论(0) 推荐(0) 编辑
摘要: 1.利用File.CreateText()来创建文本文件。代码如下:代码如下:View Code staticvoidMain(string[]args){stringpath=@"c:\temp\MyTest.txt";if(!File.Exists(path)){try{using(StreamWritersw=File.CreateText(path)){sw.WriteLine("thisismyname");sw.WriteLine("whataboutyou");sw.Write("?Ifine");} 阅读全文
posted @ 2011-07-31 00:59 wtq 阅读(395) 评论(0) 推荐(0) 编辑
  2011年7月30日
摘要: View Code staticvoidMain(string[]args){ConsoleKeyInfoc=newConsoleKeyInfo();ConsoleKeyInfocki;do{cki=Console.ReadKey();if((cki.Modifiers&ConsoleModifiers.Control)!=0)Console.WriteLine("ctrl");if((cki.Modifiers&ConsoleModifiers.Alt)!=0)Console.WriteLine("alt");if((cki.Modif 阅读全文
posted @ 2011-07-30 23:53 wtq 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 1,以下代码显示被除0的错误提示代码如下:View Code staticvoidMain(string[]args){intaa=Console.In.Read();Console.Out.Write(aa);Console.ReadLine();inta=10;intb=0;try{intc=a/b;}catch(DivideByZeroExceptionexe){Console.WriteLine(exe.Message+""+"不能被整除");Console.WriteLine(exe.HelpLink);Console.WriteLine(ex 阅读全文
posted @ 2011-07-30 22:52 wtq 阅读(366) 评论(0) 推荐(0) 编辑
摘要: View Code staticvoidMain(string[]args){List<Person>personL=newList<Person>();personL.Add(newPerson("wtq","男","13616009873",23));personL.Add(newPerson("wta","女","13616009871",24));personL.Add(newPerson("wtb","男&quo 阅读全文
posted @ 2011-07-30 16:54 wtq 阅读(7852) 评论(0) 推荐(0) 编辑
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 57 下一页