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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T12:51:15+00:00 2026-06-08T12:51:15+00:00

Why isn’t this binding working? <Window x:Class=S3PackageInstaller.MainWindow x:Name=Window1 xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml xmlns:s3u=clr-namespace:S3PackageInstaller Icon=App.ico Title=Sims 3

  • 0

Why isn’t this binding working?

<Window x:Class="S3PackageInstaller.MainWindow" x:Name="Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s3u="clr-namespace:S3PackageInstaller"
    Icon="App.ico" Title="Sims 3 Package Installer" Height="480" Width="740">

    <DockPanel LastChildFill="True">
        <DockPanel DockPanel.Dock="Left" Width="200" VerticalAlignment="Stretch" LastChildFill="True"
            Margin="20,20,0,20">

            <!-- this is the binding that isn't working -->
            <ListView Width="200" ItemsSource="{Binding ElementName=Window1, Path=InstalledPackages}">
                <ListView.View>
                    <GridView>
                        <GridViewColumn Header="Installed Packages" DisplayMemberBinding="{Binding Filename}"></GridViewColumn>
                    </GridView>
                </ListView.View>                
            </ListView>

    <!-- snip -->

</Window>

Relevant code behind:

public partial class MainWindow : Window
{
    public ObservableCollection<object> InstalledPackages { get; private set; }

    public MainWindow()
    {
        InitializeComponent();
        InstalledPackages = new ObservableCollection<object>();
        LoadInstalledPackages();
    }

    private void LoadInstalledPackages()
    {
        var installPath = Settings.Default.TargetDirectory;
        var packages = System.IO.Directory.GetFiles(installPath, "*.package");

        InstalledPackages.Clear();
        foreach (string filename in packages)
            InstalledPackages.Add(new { Filename = filename });
    }

    // snip...
}

When I run the program, the ListView is empty. When debugging, I have verified that the collection contains items after LoadInstalledPackages is run.

  • 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-08T12:51:17+00:00Added an answer on June 8, 2026 at 12:51 pm

    I think the problem is that while your collection property is an ObservableCollection, so will notify of collection changes, the property itself does not raise a change notification when you first assign to it. When you create your window as follows:

    public MainWindow()
    {
        InitializeComponent();
        InstalledPackages = new ObservableCollection<object>();
        LoadInstalledPackages();
    }
    

    When InitializeComponent is invoked your UI is created and bindings constructed. At this point InstalledPackages is null. In the next line you create your collection, but because InstalledPackages does not raise a PropertyChanged event, your binding is not updated.

    Either implement INotifyPropertyChanged, or assign the ObservableCollection to this property before invoking InitializeComponent.

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

Sidebar

Related Questions

Why isn't this working? ---HTML-------- <html> <head> <script type=text/javascript src=http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js></script> <script type=text/javascript src=j.js></script> </head>
Isn't A a = new A(); // A is a class name supposed to
This isn't working the way I expect it to. Sample input will include an
Isn't var a keyword in C#? But why can I do this: public class
This isn't working. Can this be done in find? Or do I need to
Why isn't this regular expression working? A correct email address does not pass the
This isn't legal: public class MyBaseClass { public MyBaseClass() {} public MyBaseClass(object arg) {}
Why isn't style attribute working on usercontrol? This is my code: <uc1:ucCredit runat=server ID=ucCCard
Why isn't redirect working here. I'm getting call to undefined function redirect(). class Login
Isn't having String enough? Just as an example, why can String class lets you

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.