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 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

Ask A Question

Stats

  • Questions 319k
  • Answers 319k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer From here (this is a 1.4.2 page, but the same… May 14, 2026 at 12:16 am
  • Editorial Team
    Editorial Team added an answer I'd suggest using NSDictionary instances nested inside another NSDictionary (whether… May 14, 2026 at 12:16 am
  • Editorial Team
    Editorial Team added an answer Using a nested method def sum(list: List[Int]) = { @annotation.tailrec… May 14, 2026 at 12:16 am

Related Questions

I would like to update a form's textbox in winforms with data that is
I have my main GUI thread, and a second thread running inside it's own
If I bind GridView to SqlDataSource, then the first time page will be created,
I developed a user control that displays a list of products and it works
Displaying a View inside a Region is about 5-10 seconds slow for the first

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.