绑定显示类型而不是值

时间:2010-11-13 00:41:16

标签: c# silverlight data-binding xaml windows-phone-7

嘿。  我在XAML中绑定时遇到了一些麻烦。我有一个Player对象列表。我希望此列表绑定到ListBox并显示Name的{​​{1}}。目前,列表框中填充了Player(即对象类型和命名空间)。我的资源字典样式如下所示:

Red.Player

我猜主要部分是:

<Style x:Key="PlayerListBox" TargetType="ListBoxItem">
        <Setter Property="Background" Value="Transparent"/>
        <Setter Property="BorderThickness" Value="0"/>
        <Setter Property="BorderBrush" Value="Transparent"/>
        <Setter Property="Padding" Value="0"/>
        <Setter Property="HorizontalContentAlignment" Value="Left"/>
        <Setter Property="VerticalContentAlignment" Value="Top"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="ListBoxItem">
                    <Border x:Name="LayoutRoot" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" HorizontalAlignment="{TemplateBinding HorizontalAlignment}" VerticalAlignment="{TemplateBinding VerticalAlignment}" d:DesignWidth="231" d:DesignHeight="50">
                        <VisualStateManager.VisualStateGroups>
                            <VisualStateGroup x:Name="CommonStates">
                                <VisualState x:Name="Normal"/>
                                <VisualState x:Name="MouseOver"/>
                                <VisualState x:Name="Disabled">
                                    <Storyboard>
                                        <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Background" Storyboard.TargetName="LayoutRoot">
                                            <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource TransparentBrush}"/>
                                        </ObjectAnimationUsingKeyFrames>
                                    </Storyboard>
                                </VisualState>
                            </VisualStateGroup>
                            <VisualStateGroup x:Name="SelectionStates">
                                <VisualState x:Name="Unselected"/>
                                <VisualState x:Name="Selected"/>
                            </VisualStateGroup>
                        </VisualStateManager.VisualStateGroups>
                        <TextBlock TextWrapping="Wrap" Text="{Binding}" FontSize="29.333" TextAlignment="Center"/>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

我尝试使用<TextBlock TextWrapping="Wrap" Text="{Binding}" FontSize="29.333" TextAlignment="Center"/> 但是根本没有显示任何内容。我在用户选择播放器时设置Text="{Binding Name}"

ItemsSource

感谢您的帮助

3 个答案:

答案 0 :(得分:2)

Name是您绑定的类型的公共属性吗?

public class Person
{
    string name;
    int age;

    public string Name
    {
        get { return name; }
        set { name = value; }
    }

    public int Age
    {
        get { return age; }
        set { age = value; }
    }

}

这里的示例项目演示了绑定数据到列表框。

binding a Linq datasource to a listbox

答案 1 :(得分:1)

使用de ListBox.ItemTemplate属性设置数据的显示方式。

例如

<ListBox.DataTemplate>
    <DataTemplate>
        <TextBlock Text="{Binding Name}" />
    </DataTemplate>
</ListBox.DataTemplate>

答案 2 :(得分:0)

如果要在不指定属性的情况下使用{Binding},可以覆盖ToString()以返回要显示的文本。