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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:18:43+00:00 2026-05-13T16:18:43+00:00

I subscribe to an Event inside a class . Such as MainStation mainStation =

  • 0

I subscribe to an Event inside a class. Such as

MainStation mainStation = StationFactory.GetMainStation();  
mainStation.FrequencyChanged += new EventArgs(MainStation_FrequencyChanged);

My MainStation class raises the event on some condition by just calling the event FrequencyChanged()

The Problem

Now I have a scenario where I must instantiate SubStation from MainStation which is also a subclass of MainStation with some additional features and FrequencyChanged event must be subscribed as the MainStation subscrbed. Consider the code noted below:

public class MainStation
{
    public event EventHandler FrequencyChanged;
    public static SubStation CreateSubStation()
    {
        SubStation subStation = new SubStation();
        //here I want to pass/bubble FrequencyChanged event to SubStation
        subStation.FrequencyChanged = FrequencyChanged; //THIS IS WRONG
    }
}

Bottom Line
I want to fire an event that a class subscribes from another class, also bubble up events

Update
StationFactory creates MainStation and the FrequencyChanged event in MainStation instance is set as defined in the first code block.

  • 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-13T16:18:43+00:00Added an answer on May 13, 2026 at 4:18 pm

    If FrequencyChanged does not belong to MainStation, but rather to some Base, you’re going to have to chain and expose the event you’re interested in.

    public class MainStation : Base
    {
        public event EventHandler StationFrequencyChanged;
    
        public MainStation()
        {
            // ...
    
            this.FrequencyChanged += new EventHandler(MainStation_FrequencyChanged);
        }
    
        void MainStation_FrequencyChanged(object sender, EventArgs e)
        {
            if (StationFrequencyChanged != null)
                StationFrequencyChanged(sender, e);
        }
    
        public void GetEventsFrom(MainStation src)
        {
            //this is where you assign src events to your object
            this.StationFrequencyChanged = src.StationFrequencyChanged;
        }
    
        public static SubStation CreateSubStation(MainStation main)
        {
            SubStation subStation = new SubStation();
    
            //register events    
            subStation.GetEventsFrom(main);
    
            return subStation;
        } 
    }
    
    public class SubStation : MainStation
    {
    
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code <script> FB.Event.subscribe('auth.login', function(response) { FB.api('/me', function(response) { alert(response.id); }); </script>
What causes the FB.Event.subscribe event to fire? I know clicking an fb:login-button element can
In ASP.NET I have a dropdown with some items in it, I have a
I am trying to implement the CKEditor inside an JQuery UI Dialog, when the
I'm trying to fire an event when you log in to comment, but for
I'm programming a COM Interop .NET Assembly (a COM Callable Wrapper) and I'm trying
I think RxJS should perfectly fit to supress dublicate button clicks for 2 seconds.
I have a Backbone View that uses iScroll to implement a slideshow. iScroll publishes
Any help will be deeply appreciated as I've tried everything I can think of
If you look at the homepage of http://beta.gulfdine.com/ , you will note that the

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.