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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:09:32+00:00 2026-06-09T13:09:32+00:00

I have a list box that looks like this: <ListBox ItemsSource={Binding LoadingModules}> <ListBox.ItemTemplate> <DataTemplate>

  • 0

I have a list box that looks like this:

<ListBox  
     ItemsSource="{Binding LoadingModules}">
     <ListBox.ItemTemplate>
       <DataTemplate>
          <TextBlock Opacity="{Binding ModuleLoaded, Mode=TwoWay, 
                               Converter={StaticResource BoolToDoubleConverter}}"
                     Text="{Binding ModuleName}" />
       </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

The idea is that any item with ModuleLoaded = true should have 20 percent opacity.

This works great at design time. But at run time this does not happen.

This is my logic where I actually change the value:

private void OnModuleLoaded(ModuleInfo moduleInfo)
{
    LoadingModules.Where(x => x.ModuleName == moduleInfo.ModuleName)
                  .FirstOrDefault().ModuleLoaded = true;
}

Any my LoadingModule class has ModuleLoaded defined like this:

private bool moduleLoaded;
public bool ModuleLoaded 
{
    get { return moduleLoaded ; }
    set
    {
        if (!object.Equals(moduleLoaded , value))
        {
            moduleLoaded  = value;
            OnPropertyChanged("ModuleLoaded ");
        }
    }
}

The only way I have been able to get it to work is by doing this:

var foundModule = LoadingModules.Where(x => x.ModuleName==moduleInfo.ModuleName)
                                .FirstOrDefault();
LoadingModules.Remove(foundModule);
foundModule.ModuleLoaded = false;
LoadingModules.Add(foundModule);

This does work, so I know that my bindings and converter are wired up.

But removing and re-adding is not really a solution. And it causes problems because my events don’t arrive in perfect order.

Is there any way I can get my ListBox.ItemTemplate DataTemplate to update on the fly based on a binding?

  • 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-09T13:09:34+00:00Added an answer on June 9, 2026 at 1:09 pm

    You are passing "ModuleLoaded " instead of "ModuleLoaded" to your OnPropertyChanged call. This means that even though your property value changes, the UI does not get informed about it and thus retains its original state.

    Other than that, your Where call is redundant. Instead of calling

    LoadingModules.Where(x => x.ModuleName == moduleInfo.ModuleName)
                  .FirstOrDefault();
    

    you can simply call

    LoadingModules.FirstOrDefault(x => x.ModuleName == moduleInfo.ModuleName);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ListBox with a DataTemplate that looks like this: <ListBox Name=listBox> <ListBox.ItemTemplate>
i have a listbox with a datatemplate that looks like this: spackpanel textbox1 textbox2
I have a ListBox containing CheckBoxes. Xaml looks like this: <ListBox x:Name=lbContactTypes> <ListBox.ItemTemplate> <HierarchicalDataTemplate>
This question looks like this one : Programmatically binding List to ListBox but as
I have a listbox on my form that looks like this: <ListBox Name=lbResults SelectionChanged=lbResults_SelectionChanged/>
I have a ListBox that looks something like this: <ListBox> <ListBoxItem>Item1</ListBoxItem> <ListBoxItem>Item2</ListBoxItem> <ListBoxItem>Item3</ListBoxItem> <ListBoxItem>Item4</ListBoxItem>
So I have a listbox I want to change, that looks like this: How
So I have a list box that displays averages in a table like format
I have a container view that looks something like this <UserControl x:Class=Views.ContainerView> <UserControl.Resources> <ResourceDictionary>
I have this line in WPF (.NET 3.5) : <ListBox ItemsSource={Binding Locks} Style={DynamicResource FancyListBox}

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.