马上加入IBC程序猿 各种源码随意下,各种教程随便看! 注册 每日签到 加入编程讨论群
C#教程 ASP.NET教程 C#视频教程程序源码享受不尽 C#技术求助 ASP.NET技术求助
【源码下载】 社群合作 申请版主 程序开发 【远程协助】 每天乐一乐 每日签到 【承接外包项目】 面试-葵花宝典下载
使用道具 举报
ibcadmin 发表于 2014-3-30 21:19 用流读取 StreamReader读取 里面有个ReadLine()方法 是按行读取, 返回一个数组, 数组中每一行代表一行 ...
string[] message = File.ReadAllLines("你的txt路径", Encoding.Default); foreach (string item in message) { //item 就是你那一行的数据 L (112, 100) //这时候已经得到了L的信息, 你用string的替换或者截取都行 }
ibcadmin 发表于 2014-3-31 09:46 [C#] 纯文本查看 复制代码string[] message = File.ReadAllLines("你的txt路径", Encoding.Default); ...[/quote] 非常感谢你的回复,请问有没有什么方法,把坐标给替换,这样任意写入个坐标数,图形就改变哦 ,下面的代码把new Point (112,100),new Point (180,100)和new Rectangle(112, 110, 50, 50)的坐标替换了,达到结果是随意改变坐标的数字,也可以画图![mw_shl_code=applescript,true] Graphics L = this.CreateGraphics(); Pen myPen = new Pen(Color.Black, 1); string content = textBox2.Text; string[] str = content.Split(new string[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries); for (int i = 0; i < str.Length; i++) { if (str[i].StartsWith("L"))//确定此字符串的开头为L { L.DrawLine(myPen, new Point (112,100),new Point (180,100)); } else if (str[i].StartsWith("C")) { Rectangle c = new Rectangle(112, 110, 50, 50); L.DrawEllipse(myPen, c); } else { MessageBox.Show("信息不符或为空!"); }
string[] message = File.ReadAllLines("你的txt路径", Encoding.Default); ...[/quote] 非常感谢你的回复,请问有没有什么方法,把坐标给替换,这样任意写入个坐标数,图形就改变哦 ,下面的代码把new Point (112,100),new Point (180,100)和new Rectangle(112, 110, 50, 50)的坐标替换了,达到结果是随意改变坐标的数字,也可以画图![mw_shl_code=applescript,true] Graphics L = this.CreateGraphics(); Pen myPen = new Pen(Color.Black, 1); string content = textBox2.Text; string[] str = content.Split(new string[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries); for (int i = 0; i < str.Length; i++) { if (str[i].StartsWith("L"))//确定此字符串的开头为L { L.DrawLine(myPen, new Point (112,100),new Point (180,100)); } else if (str[i].StartsWith("C")) { Rectangle c = new Rectangle(112, 110, 50, 50); L.DrawEllipse(myPen, c); } else { MessageBox.Show("信息不符或为空!"); }
本版积分规则 发表回复 回帖并转播 回帖后跳转到最后一页
积极宣传本站,为本站带来更多注册会员
长期对论坛的繁荣而不断努力,或多次提出建设性意见
活跃且尽责职守的版主
曾经为论坛做出突出贡献目前已离职的版主
为论坛做出突出贡献的会员