using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing; namespace WindowsFormsApplication1 { [ToolboxItem(true)] public partial class TextBoxLine : TextBox { public TextBoxLine() { InitializeComponent(); this.SetStyle(ControlStyles.DoubleBuffer, true); this.BorderStyle = BorderStyle.None; } public TextBoxLine(IContainer container) { container.Add(this); InitializeComponent(); this.SetStyle(ControlStyles.DoubleBuffer, true); this.BorderStyle = BorderStyle.None; } private bool m_DrawLine = false; public bool DrawLine { get { return this.m_DrawLine; } set { this.m_DrawLine = value; this.Invalidate(); } } private Color _linecolor = Color.Black; /// <summary> /// 線條顏色 /// </summary> public Color LineColor { get { return this._linecolor; } set { this._linecolor = value; this.Invalidate(); } } [System.Runtime.InteropServices.DllImport("user32.dll ")] static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC); [System.Runtime.InteropServices.DllImport("user32.dll ")] static extern IntPtr GetWindowDC(IntPtr hWnd); protected override void WndProc(ref Message m) { base.WndProc(ref m); if (m.Msg == 0xf || m.Msg == 0x133) { if (this.DrawLine) { IntPtr hDC = GetWindowDC(m.HWnd); if (hDC.ToInt32() == 0) { return; } Graphics g = Graphics.FromHdc(hDC); Pen p = new Pen(this._linecolor, 1); Point p1 = new Point(0, this.Height - 1); Point p2 = new Point(this.Width, Height - 1); g.DrawLine(p, p1, p2); m.Result = IntPtr.Zero; ReleaseDC(m.HWnd, hDC); } } } } }
原文地址:http://blog.csdn.net/geovi/article/details/7399406
在網(wǎng)站制作、網(wǎng)站建設(shè)中從網(wǎng)站色彩、結(jié)構(gòu)布局、欄目設(shè)置、關(guān)鍵詞群組等細(xì)微處著手,突出企業(yè)的產(chǎn)品/服務(wù)/品牌,幫助企業(yè)鎖定精準(zhǔn)用戶,提高在線咨詢和轉(zhuǎn)化,使成都網(wǎng)站營銷成為有效果、有回報的無錫營銷推廣。創(chuàng)新互聯(lián)公司專業(yè)成都網(wǎng)站建設(shè)十年了,客戶滿意度97.8%,歡迎成都創(chuàng)新互聯(lián)客戶聯(lián)系。另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
本文題目:WinFormTextBox下面橫線展示-創(chuàng)新互聯(lián)
網(wǎng)站地址:http://jinyejixie.com/article22/djshjc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化、定制網(wǎng)站、云服務(wù)器、網(wǎng)站設(shè)計、網(wǎng)站改版、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容