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 7646933
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:20:13+00:00 2026-05-31T10:20:13+00:00

How can I disable the focus cues on a SplitContainer? I ask because I’d

  • 0

How can I disable the focus cues on a SplitContainer?
I ask because I’d rather draw them myself using OnPaint in order to make it look somewhat smoother.

I tried this:

    protected override bool ShowFocusCues
    {
        get
        {
            return false;
        }
    }

And this is my control:

    public class cSplitContainer : SplitContainer
    {
        private bool IsDragging;

        protected override void OnMouseDown(MouseEventArgs e)
        {
            base.OnMouseDown(e);
            if (!IsSplitterFixed) IsDragging = true;
            Invalidate();
        }
        protected override void OnMouseUp(MouseEventArgs e)
        {
            base.OnMouseUp(e);
            if (IsDragging)
            {
                IsDragging = false;
                IsSplitterFixed = false;
            }
        }
        protected override void OnMouseMove(MouseEventArgs e)
        {
            base.OnMouseMove(e);
            if (IsDragging)
            {
                IsSplitterFixed = true;
                if (e.Button == MouseButtons.Left)
                {
                    if (Orientation == Orientation.Vertical)
                    {
                        if (e.X > 0 && e.X < Width) SplitterDistance = e.X;
                    }
                    else
                    {
                        if (e.Y > 0 && e.Y < Height) SplitterDistance = e.Y;
                    }
                }
                else
                {
                    IsDragging = false;
                    IsSplitterFixed = false;
                }
            }
        }
        protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
        {
            base.OnPaint(e);
            if (IsDragging)
            {
                e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(127, 0, 0, 0)), Orientation == Orientation.Horizontal ? new Rectangle(0, SplitterDistance, Width, SplitterWidth) : new Rectangle(SplitterDistance, 0, SplitterWidth, Height));
            }
        }
    }

but it didn’t work. I also tried some other methods mentioned before, but I’m still getting focus cues.

  • 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-31T10:20:15+00:00Added an answer on May 31, 2026 at 10:20 am

    The code of SplitContainer is like:

    protected override void OnPaint(PaintEventArgs e) {
      base.OnPaint(e);
      if (Focused) {
        DrawFocus(e.Graphics,SplitterRectangle);
      }
    }
    

    DrawFocus is not virtual. So you can’t override it.
    Focused is virtual. Maybe you can set it to false while calling base.OnPaint(...) in your OnPaint override.

    So you could add following code (I did not tested if it works):

    private bool _painting;
    public override bool Focused
    {
      get { return _painting ? false : base.Focused; }
    }
    
    protected override void OnPaint(PaintEventArgs e)
    {
      _painting = true;
    
      try
      {
        base.OnPaint(e);
      }
      finally
      {
        _painting = false;
      }
    }
    

    That is more a hack than a clean solution.

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

Sidebar

Related Questions

Can I disable right click on my web page without using JavaScript? I ask
Can any one tell how to disable focus to a browser. Hi i am
How can I disable the focus from an Item in a ListView when I
I can disable one and one by doing this: jQuery('#ListBoxA').attr('disabled','true'); But how can I
I can disable viewstate of each control, but not entire page. Is there a
In C++ you can disable a function in parent's class by declaring it as
With Safari you can disable most iframe scrolling by setting style=overflow: hidden; on the
Is there any addon by which I can disable all catch blocks temporarily. I'm
I'd like some technical information on how it works, and how I can disable
Can I disable the minimize button in JFrame? I have already tried setUndecorated() and

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.