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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:58:23+00:00 2026-05-28T13:58:23+00:00

I have MainWindow and 2 user controls. In Main Window there is Tab Control

  • 0

I have MainWindow and 2 user controls. In Main Window there is Tab Control which loads User Control if you click on button search in MainWindow. I could add tab items in main Window by this code.

 private void search(object sender, RoutedEventArgs e)
        {

            tc.Visibility = Visibility.Visible; // It is hidden by default
            TabItem tab = new TabItem();
            tab.Header = "Поиск";
            UCSearch c = new UCSearch(); // User Control 1
            tab.Content = c;
            tc.Items.Add(tab);
         }

When User Control 1 is loaded in Tab item. There is Tetxbox and Button in User Control 1.I want to load User Control 2 when is clicking to Button. But I can not get access to Tab Control which is in Main Window from User Control 1. Please Give me direction. Where to dig?

  • 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-28T13:58:24+00:00Added an answer on May 28, 2026 at 1:58 pm

    You could use an Extension method to search the VisualTree for a Parent of type TabControl.

    e.g.

    Extension method:

      public static class VisualTreeExtensions
      {
    
        public static T FindParent<T>(this DependencyObject child)
      where T : DependencyObject
        {
          //get parent item
          DependencyObject parentObject = VisualTreeHelper.GetParent(child);
    
          //we've reached the end of the tree
          if (parentObject == null) return null;
    
          //check if the parent matches the type we're looking for
          var parent = parentObject as T;
          if (parent != null)
          {
            return parent;
          }
          else
          {
            return FindParent<T>(parentObject);
          }
        }
    

    In your Button Handler:

    private void Button_Click(object sender, RoutedEventArgs e)
    {
      var tabControl = (sender as Button).FindParent<TabControl>();
      tabControl.Items.Add(new TabItem() { Header = "New"});
    }
    

    The better and more flexible (but also more complicated) solution would be to notify the participants (here: your Button fires some kind of message that it was clicked, others (your TabControl) listen and react on it (create a new Tab).
    This can for example be done with a Mediator pattern or an EventAggregator.

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

Sidebar

Related Questions

I have a main window which hosts two views (user controls). One is UserControl1
Greetings I have a Main Window which will hold multiple User Controls. I will
I have a Main Window which has a Grid. On Button Click Events, I
I have a UserControl which contains a TextBox . When my main window loads
i have a mvvm app that the main window is a tab control. i
I have a main window (#1) on my webpage from which I open a
I have WPF application with one main window . In this window there are
I have a user control that often has 2000 or so component controls (TextBoxes,
I have a tab bar control application in XCode 4 and before the main
I have setup coredata in my appDelegate, but it first loads the mainWindow.xib 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.