How can I bind an ItemsControl.ItemsSource with a

2019-02-21 14:42发布

I have a simple window :

<Window x:Class="WinActivityManager"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Grid>
        <ListView x:Name="lvItems" />
    </Grid>
</Window>

And the associated code behind :

public partial class WinActivityManager : Window
{
    private ObservableCollection<Activity> Activities { get; set; }

    public WinActivityManager()
    {
        Activities = new ObservableCollection<Activity>();
        InitializeComponent();
    }

    // Other code ...
}

If I write the following binding in the window constructor :

lvItems.ItemsSource = Activities;

then my ListView is automatically updated when I add or remove elements from Activities.

How should I write the binding in XAML?
I tried this but it doesn't work:

<ListView x:Name="lvItems" ItemsSource="{Binding=Activities}" />

How do I make this work in XAML?

4条回答
贼婆χ
2楼-- · 2019-02-21 15:00

You must set DataContext to this like others answered, but you can set DataContext through xaml also:

<Window x:Class="WinActivityManager"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        DataContext="{Binding RelativeSource={RelativeSource Self}}">
    <Grid>
        <ListView x:Name="lvItems" ItemsSource="{Binding Path=Activities}" />
    </Grid>
</Window>
查看更多
够拽才男人
3楼-- · 2019-02-21 15:15

Set DataContext = this in the Window constructor.

public WinActivityManager()
{
    Activities = new ObservableCollection<Activity>();
    DataContext = this;
    InitializeComponent();
}

Then you will be able to bind Activities as you want: <ListView x:Name="lvItems" ItemsSource="{Binding=Activities}" />

查看更多
Viruses.
4楼-- · 2019-02-21 15:18

That's because the data context of your view hasn't been set. You could either do this in the code behind:

this.DataContext = this;

Alternatively, you could set the Window's DataContext to itself - DataContext="{Binding RelativeSource={RelativeSource Self}}"

You're much better off though investigating the MVVM design pattern, and using an MVVM framework.

查看更多
虎瘦雄心在
5楼-- · 2019-02-21 15:20

What @JesseJames says is true but not enough.

You have to put

private ObservableCollection<Activity> Activities { get; set; } 

as

public ObservableCollection<Activity> Activities { get; set; }

And the binding should be:

<ListView x:Name="lvItems" ItemsSource="{Binding Path=Activities}" />

Regards,

查看更多
登录 后发表回答