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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:23:47+00:00 2026-05-15T19:23:47+00:00

I’m writing a custom ItemsControl (a tabbed document container), where each item (tab) can

  • 0

I’m writing a custom ItemsControl (a tabbed document container), where each item (tab) can remove itself from the UI when the user closes it. However, I can’t remove it directly from the ItemsControl.Items collection, because the items can be databound. So I have to remove it from the ItemsSource, which can be anything (ICollection, DataTable, DataSourceProvider…).

In the context of my application, I know what the actual type of the ItemsSource will be, but I want that control to be more generic so that I can reuse it later.

So I’m looking for a way to remove an item from a data source, without knowing its type. I could use reflection, but it feels dirty… So far the best solution I came up with is using dynamic :

    internal void CloseTab(TabDocumentContainerItem tabDocumentContainerItem)
    {
        // TODO prompt user for confirmation (CancelEventHandler ?)

        var item = ItemContainerGenerator.ItemFromContainer(tabDocumentContainerItem);

        // TODO find a better way...
        try
        {
            dynamic items = ItemsSource;
            dynamic it = item;
            items.Remove(it);
        }
        catch(RuntimeBinderException ex)
        {
            Trace.TraceError("Oops... " + ex.ToString());
        }
    }

But I’m not really happy with it, I’m sure there must be a better way. Any suggestions would be appreciated !

  • 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-15T19:23:48+00:00Added an answer on May 15, 2026 at 7:23 pm

    OK, I found a solution…

    • If the ItemsSource is databound, I either raise an event (for use with code-behind) or invoke a command (for use with a ViewModel) to remove the item from the ItemsSource collection.

    • If it’s not databound, I raise an event to prompt the user for confirmation, and I remove the container directly from Items

      public static readonly DependencyProperty CloseTabCommandProperty =
          DependencyProperty.Register(
              "CloseTabCommand",
              typeof(ICommand),
              typeof(TabDocumentContainer),
              new UIPropertyMetadata(null));
      
      public ICommand CloseTabCommand
      {
          get { return (ICommand)GetValue(CloseTabCommandProperty); }
          set { SetValue(CloseTabCommandProperty, value); }
      }
      
      public event EventHandler<RequestCloseTabEventArgs> RequestCloseTab;
      public event EventHandler<TabClosingEventArgs> TabClosing;
      
      internal void CloseTab(TabDocumentContainerItem tabDocumentContainerItem)
      {
          if (ItemsSource != null) // Databound
          {
              object item = ItemContainerGenerator.ItemFromContainer(tabDocumentContainerItem);
              if (item == null || item == DependencyProperty.UnsetValue)
              {
                  return;
              }
              if (RequestCloseTab != null)
              {
                  var args = new RequestCloseTabEventArgs(item);
                  RequestCloseTab(this, args);
              }
              else if (CloseTabCommand != null)
              {
                  if (CloseTabCommand.CanExecute(item))
                  {
                      CloseTabCommand.Execute(item);
                  }
              }
          }
          else // Not databound
          {
              if (TabClosing != null)
              {
                  var args = new TabClosingEventArgs(tabDocumentContainerItem);
                  TabClosing(this, args);
                  if (args.Cancel)
                      return;
              }
              Items.Remove(tabDocumentContainerItem);
          }
      }
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.