0

UI の更新に関して、WPF contextMenu で奇妙な問題が発生しました。

基本的に、World という名前の階層リストを作成します。このリストには国が含まれており、各国には都市が含まれています。このリストをラベル contextMenu にバインドします。

そのリストから 1 つの都市を削除するボタンを作成します。

ここにコード

`

<Window.Resources>
    <HierarchicalDataTemplate DataType="{x:Type local:Country}" ItemsSource="{Binding Path=ListCity}">
        <TextBlock Text="{Binding Path=NameCountry}"/>
    </HierarchicalDataTemplate>

    <HierarchicalDataTemplate DataType="{x:Type local:City}">
        <TextBlock Text="{Binding Path=NameCity}"/>
    </HierarchicalDataTemplate>
</Window.Resources>

<Grid>
    <Button x:Name="btnDelete_London" Click="btnDelete_London_Click" VerticalAlignment="Top">Del London</Button>

    <Label x:Name="label_World" Content="WORLD" VerticalAlignment="Bottom" HorizontalAlignment="Center" Background="Aqua"/>

</Grid>

` コードビハインド

 public class Country
{
    public string NameCountry { get; set; }
    public List<City> ListCity { get; set; }
}

public class City
{
    public string NameCity { get; set; }
}


public partial class MainWindow : Window
{        
    List<Country> World = new List<Country>();
    Country USA = new Country();
    Country UK = new Country();
    City NY = new City();
    City LA = new City();
    City LD = new City();

    public MainWindow()
    {
        InitializeComponent();

        USA.NameCountry = "United-Sates";
        UK.NameCountry = "United Kingdom";

        NY.NameCity = "New-York";            
        LA.NameCity = "Los Angeles";
        LD.NameCity = "London";

        USA.ListCity = new List<City>();
        USA.ListCity.Add(NY);
        USA.ListCity.Add(LA);

        UK.ListCity = new List<City>();
        UK.ListCity.Add(LD);

        World.Add(USA);
        World.Add(UK);

        this.label_World.ContextMenu= new ContextMenu();
        this.label_World.ContextMenu.ItemsSource = World;            
    }

    private void btnDelete_London_Click(object sender, RoutedEventArgs e)
    {
        bool finded = false;

        foreach (Country country in World)
        {
            foreach (City city in country.ListCity)
            {
                if (city.NameCity == "London")
                {    
                  country.ListCity.Remove(city);                    
                  finded = true;
                  break;
                }
            }
            if(finded ) break;
        }

        CollectionViewSource.GetDefaultView(label_World.ContextMenu.ItemsSource).Refresh();
    }
}

最初にボタンをクリックしてからラベルを右クリックすると、contextMenu が更新されたデータと一緒に表示されます (つまり、london が削除されました)。

UI の更新の問題は、最初に contextMenu を表示するラベルを右クリックしたときに発生します。次に、ウィンドウ内のどこかをクリックして、contextMenu を非表示にします。次に、ボタンをクリックすると、都市ロンドンが削除されます。ラベルを右クリックすると、contextMenu は Country Item で表示されますが、City Subitems では表示されません。

4

1 に答える 1

1

ContextMenu ItemsSourceをWorldのコピーに設定しており、コードビハインドで作成されたWorldのインスタンスにバインドしていないようです。

バインディングとして設定するには、コンストラクターで次のコードを使用します。

this.label_World.ContextMenu = new ContextMenu();

Binding worldBinding = new Binding();
worldBinding.Source = World;
this.label_World.ContextMenu.SetBinding(ContextMenu.ItemsSourceProperty, worldBinding);

これによりバインディングが設定されますが、デフォルトでList<T>は、オブジェクトが変更されたときにUIに通知されません。List<T>に置き換えることであなたの生活を楽にすることがSystem.Collections.ObjectModel.ObservableCollection<T>でき、それからあなたは線を取り除くことができます

CollectionViewSource.GetDefaultView(label_World.ContextMenu.ItemsSource).Refresh(); 

ロンドンを削除すると、ワールドオブジェクトが変更されるたびにコンテキストメニューが自動的に更新されるためです。

于 2010-08-19T15:26:43.963 に答える