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

In my class I want to declare an event that other classes can subscribe
I'm writing a topic-based publish/subscribe system in C++. My generic Event class has three
Is there currently a way to subscribe to an event of a wrapped set,
Is there a way to subscribe to the HttpApplication's BeginRequest event from Global.asax? What
In this case, is it bad to subscribe to the proxy CloseCompleted event? public
Alternatively: How to subscribe to the PropertyChanged event defined by INotifyPropertyChanged thru the databinding
I am trying to trigger the FB subscribe event, but the alert does not
I'm using Facebook Javascript SDK. Using FB.Event.subscribe is unstable because sometimes it does not
FB.Event.subscribe('edge.create', function(response) { $.ajax({ url: $(location).attr(href) + ?facebook=true, success: function() { alert(You now get
FB.Event.subscribe('edge.create', function(response) { alert ('liked!') } ); How do I check the reverse action?

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.