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, i have two textfiled in which i enter some
I want to Draw multiple line Graph with each line have different color and
I want to draw a customized keyboard with numbers on top of characters. It
I want draw a line between to specify point in java 3d. how can
I want to draw line between to imageviews (like linking the images..) in UIView.
I want to draw some Rectangle over a single Image . For example I
I want to draw rectangle that is only specified percent high of panel im
I want to draw circle, and i want to re size it based on
I want to draw an area from given points on a map using the
i want to draw zebra lines in my form not a table, just lines

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.