简体   繁体   English

如何在WPF中绑定到集合中的集合

[英]How to bind to a collection within a collection in WPF

I'm still at the early stages of learning WPF and have decided to try and write a fairly simple Contact Browser app to get to grips with the fundamentals. 我仍处于学习WPF的早期阶段,因此决定尝试编写一个相当简单的Contact Browser应用程序以掌握基础知识。 To add to the complexity I am using Objects from another application. 为了增加复杂性,我正在使用另一个应用程序中的对象。

So far I have been able to successfully bind a ListBox control to a Collection and display the Contact Names. 到目前为止,我已经能够成功将ListBox控件绑定到Collection并显示联系人姓名。 In the middle of the screen I have a StackPanel with a CustomControl that displays further details of the Contact. 在屏幕中间,我有一个带有CustomControl的StackPanel,可显示Contact的更多详细信息。 This all works surprisingly well except for that fact that the Object Model for the Contact hides the PhoneNUmber field within a Collection of fields. 除了联系人的对象模型将PhoneNUmber字段隐藏在字段集合中这一事实之外,所有这一切都很好地起作用。

How can I bind/call a specific item within a collection of a bound object collection? 如何在绑定的对象集合的集合中绑定/调用特定项目?

Here is some of my XAML, firstly the main ContactWindow: 这是我的一些XAML,首先是主ContactWindow:

<DockPanel Width="auto" Height="auto" Margin="8 8 8 8">
    <Border Height="56" HorizontalAlignment="Stretch" VerticalAlignment="Top" BorderThickness="1" CornerRadius="8" DockPanel.Dock="Top" Background="Beige">
        <TextBox Height="32" Margin="23,5,135,5" Text="Search for contact here" FontStyle="Italic" Foreground="#FFAD9595" FontSize="14" BorderBrush="LightGray"/>
    </Border>
    <ListBox x:Name="contactList" DockPanel.Dock="Left" Width="192" Height="auto" Margin="5 4 0 8" ItemsSource="{Binding}" DisplayMemberPath="FullName" />
    <Grid DataContext="{Binding ElementName=contactList, Path=SelectedItem}">
        <Grid.RowDefinitions>
            <RowDefinition Height="1*" />
            <RowDefinition Height="0.125*" />
        </Grid.RowDefinitions>
        <local:BasicContactCard Margin="8 8 8 8" />
        <Button Grid.Row="1" x:Name="exit" Content="Exit" HorizontalAlignment="Right" Width="50" Height="25" Click="exit_Click" />
    </Grid>
</DockPanel>

And here is the XAML for the BasicContactCard: 这是BasicContactCard的XAML:

<DockPanel Width="auto  " Height="auto" Margin="8,8,8,8" >
    <Grid Width="auto" Height="auto" DockPanel.Dock="Top">
        <Grid.RowDefinitions>
            <RowDefinition Height="1*" />
            <RowDefinition Height="1*" />
            <RowDefinition Height="1*" />
            <RowDefinition Height="1*" />
        </Grid.RowDefinitions>
        <TextBlock x:Name="companyField" Grid.Row="0" Width="auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="8,8,8,8" Text="{Binding Company}" FontWeight="Bold" FontSize="15" />
        <TextBlock x:Name="contactField" Grid.Row="1" Width="auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="8,8,8,8" Text="{Binding FullName}" FontWeight="Bold" />
        <TextBlock x:Name="phoneField" Grid.Row="2" Width="auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="8,8,8,8" Text="{Binding Phone}"/>
        <TextBlock x:Name="emailField" Grid.Row="3" Width="auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="8,8,8,8" Text="{Binding ValidEmailAddress}"/>
    </Grid>
</DockPanel>

All the elements within the BasicContactCard except for the Phone are exposed as get-able properties from the Contact collection object that the Listbox is bound to except for the Phone which resides within a collection of Field objects that can be called in C# as 除Phone以外,BasicContactCard中除Phone之外的所有元素都作为可获取属性公开,该属性与列表框绑定到的Contact集合对象有关,但Phone除外,它位于可以在C#中调用的Field对象的集合中

Contact c = contacList[i];
string val = c.ContactFields.Item("Phone",FieldNameType.Alias);

I hope all that makes sense! 我希望所有这些都有意义! Any help or pointers to resources would be really appreciated! 任何帮助或指向资源的指针将不胜感激!

Viv VIV

Use a value converter to get the phone number. 使用值转换器获取电话号码。

XAML: XAML:

<UserControl.Resources>    
    <TestApp:PhoneNumberConverter x:Key="PhoneNumberConverter" />
</UserControl.Resources>

<TextBlock Text="{Binding ., Converter=StaticResource PhoneNumberConverter}}"/>

Code behind: 后面的代码:

public class PhoneNumberConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        Contact c = value as Contact;
        string phoneNr = c.ContactFields.Item("Phone", FieldNameType.Alias); 
        return phoneNr;
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM