摘要:
LinkedLabel 链接标签 TextBox PasswordChar 使之形成密码框 MultiLine 多行文本 ReadOnly ScroBars 滚动条 CheckBox 复选框 RadioButton 单选框 Checked 属性 容器,如Group Box ListBox 列表框 复 阅读全文
摘要:
建立StreamReader对象 New StreamReadere(文件路径,FileEncode) StreamReader对象的 主要方法 ReadLine、ReadToEnded、Read(读取一个字符)、Peek、Close 建立StreamWriter对象 New StreamWrite 阅读全文
摘要:
对文件和文件夹操作的类 1.FileInfo 具体文件,使用此类的对象,可以获得问价大小等各种信息 继承自FileSystemInfo 建立对象,FileInfo Fi= new FileInfo(); 常用属性 · Name 文件名称 · Extension 文件扩展名 · FullName 文件 阅读全文
摘要:
Stream类 按存取位置分 · FileStream · MemoryStream · BufferedStream 读写类 BinaryReader 和BinaryWriter TextReader 和 TextWriter 其关系 FileStream fs = new FileStream 阅读全文
摘要:
Overload List Name Description DrawRectangle(Pen, Int32, Int32, Int32, Int32) Draws a rectangle specified by a coordinate pair, a width, and a height. 阅读全文
摘要:
重载列表 名称 说明 DrawEllipse(Pen, Int32, Int32, Int32, Int32) 绘制一个由边框定义的椭圆,该边框由矩形的左上角坐标 pen Type: System.Drawing.Pen Pen,它确定曲线的颜色、宽度和样式。 x Type: System.Int3 阅读全文
摘要:
Pen myPen = new Pen(Color.ForestGreen, 4.0F); 来自 <https://technet.microsoft.com/zh-cn/library/y7858dt5(v=vs.90)> Pen skyBluePen = new Pen(Brushes.Deep 阅读全文
摘要:
获取鼠标位置 private void Form1_MouseMove(object sender, MouseEventArgs e) { this.label1.Text = e.X + "," + e.Y; } 来自 <http://www.icourse163.org/learn/PKU-1 阅读全文