Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6560899
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T13:31:14+00:00 2026-05-25T13:31:14+00:00

I want to draw a margin line at 80 characters in a WinForms TextBox.

  • 0

I want to draw a margin line at 80 characters in a WinForms TextBox. Here is what I’ve tried, in my TextBox subclass:

protected override void WndProc(ref Message m)
{
    base.WndProc(ref m);

    const int WM_PAINT = 0x00F;
    if (m.Msg == WM_PAINT) {
        DrawMargin();
    }
}

void DrawMargin()
{
    using (Pen pen = new Pen(Color.Gray, 1)) {
        using (Graphics graphics = CreateGraphics()) {
            float charWidth = graphics.MeasureString("M", Font).Width;
            graphics.DrawLine(pen, charWidth * 80, 0, charWidth * 80, Height);
        }
    }
}

There are at least three problems with this:

  1. When the user enters some text, part of the line gets blanked out (goes white).
  2. When the user selects some text with the mouse, the above happens again.
  3. The line flickers when the TextBox is scrolled.

I notice that TED Notepad (which uses a Win32 EDIT control) is able to draw a margin without any problems, so it seems that it’s possible to do what I want. Could anyone advise me how?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T13:31:15+00:00Added an answer on May 25, 2026 at 1:31 pm

    As far as I can tell, the best way of doing this is simply to place a WinForms.Panel over the TextBox:

    class FooTextBox : TextBox
    {
        public FooTextBox()
        {
            margin = new Panel();
    
            margin.Enabled   = false;
            margin.BackColor = Color.LightGray;
            margin.Top       = 0;
            margin.Height    = ClientSize.Height;
            margin.Left      = <whatever>;
            margin.Width     = 1;
    
            Controls.Add(margin);
        }
    
        Panel margin;
    }
    

    Since the panel is not Enabled, it doesn’t take mouse input.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to draw line on UIImageView. I already draw line on UIImageView but
I want to draw this in my view to draw this line, I have
I want draw a line between to specify point in java 3d. how can
I want to draw a straight line in JFrame using Line2D.Double , also I
I want to draw DirectX content so that it appears to be floating over
I want to draw a shadow around a thumbnail in my software. It seems
I want to draw a HBITMAP onto HDC, I used StretchDIBits. It works fine.
I want to draw some lines and rectangles on a panel. Sometimes it does
I want to draw some listview items disabled and would like to mimic the
I want to draw a graph in my Django-based site, to look like these

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.