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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:26:31+00:00 2026-06-18T05:26:31+00:00

Is there a way to link two items in a ListBox together? What I’m

  • 0

Is there a way to link two items in a ListBox together? What I’m trying to accomplish is allowing a user to delete an item in a ListBox and before that item is removed it either removes the item that is one above it if it’s even or one below if it’s odd. Or is there something else I should be using instead of a ListBox? Here is the part of my code that handles the removal:

private void DeleteItem(string path)
{
    var index = FileList.IndexOf(path);
    if (index % 2 == 0)
    {
        FilesList.RemoveAt(index + 1);
    }
    else
    {
        FileList.RemoveAt(index - 1);
    }
    FileList.Remove(path);        
}
  • 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-06-18T05:26:32+00:00Added an answer on June 18, 2026 at 5:26 am

    Do you really need to link two different items or is it just that you need the visual appearance of two items (one above the other) for each object in the list? If the later is the case then you could define a view model and specify an item template in XAML. Then for collection changed logic, you could use ObservableCollection which implements INotifyCollectionChanged and raises a CollectionChanged event.

    public partial class MainWindow : Window
    {
        class ListItemViewModel
        {
            public string Name1 { get; set; }
            public string Name2 { get; set; }
        }
    
        ObservableCollection<ListItemViewModel> items;
    
        public MainWindow()
        {
            InitializeComponent();
    
            // Populate list...
            // In reality, populate each instance based on your related item(s) from your data model.
            items = new ObservableCollection<ListItemViewModel>
            {
                new ListItemViewModel { Name1 = "Foo1", Name2 = "Foo2" },
                new ListItemViewModel { Name1 = "Bar1", Name2 = "Bar2" }
            };
    
            listBox1.ItemsSource = items;
            items.CollectionChanged += items_CollectionChanged;
        }
    
        void items_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
        {
            switch (e.Action)
            {
                case NotifyCollectionChangedAction.Remove:
                    for (int i = 0; i < e.OldItems.Count; i++)
                    {
                        var itemVm = e.OldItems[i] as ListItemViewModel;
    
                        // Update underlying model collection(s).
                    }
                    break;
    
                //  Handle cases Add and/or Replace...
            }
        }
    }
    

    XAML:

    <ListBox x:Name="listBox1">
        <ListBox.ItemTemplate>
            <ItemContainerTemplate>
                <StackPanel>
                    <TextBlock Text="{Binding Name1}" />
                    <TextBlock Text="{Binding Name2}" />
                </StackPanel>
            </ItemContainerTemplate>
        </ListBox.ItemTemplate>
    </ListBox>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to link batch script (.bat files) so that they run
Is there a way to link an existing .exe file with other C++ source
Is there any way to write a valid header/link/image? Something like <a href=index.html><h1 id=logo>Company
Is there some way to replicate rails' link-to-unless-current? Ie. if i have a list
Is there a way to share screen Skype link ? // I need to
Is there a way using the Net::SFTP Library in Ruby ( API Link )
Is there a way to get the name of the category and the link
Is there a way to use devenv.exe on the command line to link-only a
JSFiddle Is there any way to make something like the X on that link
I have a link as bellow. Is there any way to change info@example.co.uk with

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.