簡體   English   中英

在WPF xaml文件中綁定ObservableDictionary

[英]Bind an ObservableDictionary in WPF xaml file

我有一個ObservableCollection<MyDataType>對象命名myCollection ,我是在GUI使用呈現<DataTemplate>在我.XAML文件(參見下面的代碼)。 但是現在myCollection的類型已更改為Dictionary<UInt64,MyDataType> 我現在將如何呈現? 在這里,我找到了ObservableDictionary<> 但是我不知道如何將其綁定到我的GUI? 感謝您的協助!

<Page x:Class="Project.ThisPage"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
  xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
  xmlns:local="clr-ThisPage.ProjectSpace" 
  mc:Ignorable="d" 
  d:DesignHeight="480" d:DesignWidth="640"
Title="ThisPage"
  Name="thisPage">
    <Page.Resources>
        <DataTemplate x:Key="MyDataTemplate" DataType="{x:Type local:MyDataType}">
        <Label Content="{Binding Name}"/>
        <Label Content="{Binding Id}"/>
        </DataTemplate>
    </Page.Resources>

<Grid>
 <ScrollViewer>
            <StackPanel>
                <ItemsControl ItemsSource="{Binding ElementName=thisPage,Path=myCollection}" ItemTemplate="{StaticResource MyDataTemplate}" />
            </StackPanel>
 </ScrollViewer>
</Grid></Page>

myCollection.Values將給您MyDataType集合,而myCollection.Keys將給您UINT64集合。 因此,綁定到MyDataType集合只需更新綁定,例如:

ItemsControl ItemsSource="{Binding ElementName=thisPage,Path=myCollection.Values}" ItemTemplate="{StaticResource MyDataTemplate}" />

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM