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

  • Home
  • SEARCH
  • 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 7030633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:41:49+00:00 2026-05-28T00:41:49+00:00

I write a class Scope inherit UserControl. I use some Scope to draw some

  • 0

I write a class Scope inherit UserControl. I use some Scope to draw some figures that have the same time stamp. So I want to scroll all Scope when I scroll one of them.
I think I just make OnScroll method static, but it’s not work.

What should I do?

Any advice is welcome.

  • 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-28T00:41:50+00:00Added an answer on May 28, 2026 at 12:41 am

    I would have a CompositeScroll class with method AddScrollbar. This class suscribes to the OnScroll of each scrollbar you add and make the others change its position in there. Something like this:

    public class CompositeScroll
    {
        private List<Scrollbar> scrollbars = new List<Scrollbars>();
    
        public void AddScrollbar(Scrollbar scrollbar)
        {
            scrollbars.Add(scrollbar);
            scrollbar.OnScroll += OnScroll;
        }
    
        private void OnScroll(object sender, EventArgs e)
        {
            var current = (Scrollbar)sender;
            var scrollbarsToMove = scrollbars.Where(x => x != current);
    
            foreach(var scrollbar in scrollbarsToMove)
                scrollbar.Position = current.Position;
        }
    }
    
    public class MyForm : Form
    {
        private CompositeScroll compositeScroll = new CompositeScroll();        
    
        public MyForm()
        {
            InitializeComponents();
            compositeScroll.AddScrollbar(scrollbar1);
            compositeScroll.AddScrollbar(scrollbar2);
            compositeScroll.AddScrollbar(scrollbar3);
            compositeScroll.AddScrollbar(scrollbar4);
        }
    }
    

    This is an idea, you can change the Scrollbar type with the one you are using that contains teh scrollbars (Maybe a plain old UserControl).

    Hope it helps.

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

Sidebar

Related Questions

I'm trying to write a named scope that will order my 'Products' class based
I am using Qt and wish to write a class that will perform some
Is there a way to use block class scope resolution in C++ so that
I have a class from an external library that I want to extend with
I want to write class whose constructor takes two parameters, but the arguments are
I'm trying to write a class in Delphi 2007 that uses a ActiveX library.
Would it be possible to write a class that is virtually indistinguishable from an
Every time I write trivial getters (get functions that just return the value of
I am trying to write a macro that defines a special class of data
I have an class with some instance variables. It's purpose is for templating. So

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.