首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >Csharp Winform TextBox 樣式以一條橫線顯示

Csharp Winform TextBox 樣式以一條橫線顯示

作者头像
geovindu
发布2026-06-18 12:53:05
发布2026-06-18 12:53:05
1210
举报
代码语言:javascript
复制
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
using System.Reflection;
using System.Runtime.InteropServices;
using System.ComponentModel;


namespace TextboxsStyleLineControlLibrary
{
    /// <summary>
    ///csharp winform 划横线输入框
    /// 塗聚文 2012-03-27
    /// 締友計算機信息技術有限公司
    /// 捷為工作室
    /// </summary>
    [ToolboxItem(true)] 
    public  class GeovinDuTextBoxLine:TextBox
    {
        private bool m_DrawLine = false;
        private const int WM_NCPAINT = 0x0085;
        private const int WM_CHAR = 0x0102;

        [System.Runtime.InteropServices.DllImport("user32.dll ")]
        static extern IntPtr GetWindowDC(IntPtr hWnd);

        [System.Runtime.InteropServices.DllImport("user32.dll ")]
        static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);
        /// <summary>
        /// 
        /// </summary>
        public GeovinDuTextBoxLine()
        {
            //
            //   TODO:   在此处添加构造函数逻辑
            //
            this.SetStyle(ControlStyles.DoubleBuffer, true);
            this.BorderStyle = BorderStyle.None;
        }
        private Color _linecolor = Color.Black;
        /// <summary>
        /// 线条颜色
        /// </summary>
        public Color LineColor
        {
            get
            {
                return this._linecolor;
            }
            set
            {
                this._linecolor = value;
                this.Invalidate();
            }
        }

        private const int WM_PAINT = 0xF;


        /// <summary>
        /// 
        /// </summary>
        public bool DrawLine
        {
            get
            {
                return this.m_DrawLine;
            }
            set
            {
                this.m_DrawLine = value;
                this.Invalidate();
            }
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="m"></param>
        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);
                    //Brush b = Brushes.Black;
                    Pen p = new Pen(this._linecolor, 1);//b

                    Point p1 = new Point(0, this.Height - 2);
                    Point p2 = new Point(this.Width, Height - 2);
                    g.DrawLine(p, p1, p2);

                    m.Result = IntPtr.Zero;
                    ReleaseDC(m.HWnd, hDC);
                }
            }
        }   

    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2026-06-17,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档