摘要: 1 using System.Windows.Forms; 2 using System.Drawing; 3 4 namespace WindowsFormsApplication1 5 { 6 public partial class LineTextBox : TextBox 7 { 8 public LineTextBox() 9 {10 this.Multiline = false;11 this.Width = 100;12 this.Height = 20;13 this.BorderStyle = BorderStyle.None;14 }15 private Color _. 阅读全文
posted @ 2011-03-28 00:28 diaboo 阅读(171) 评论(0) 推荐(0)