Windows phone 7 列表选择器上的标题在适用于windows phone 7的silverlight toolkit中不可见

Windows phone 7 列表选择器上的标题在适用于windows phone 7的silverlight toolkit中不可见,windows-phone-7,Windows Phone 7,我无法理解为什么我看不到此listpicker的标题名称 代码如下: <toolkit:ListPicker x:Name="MyListPicker" Header="Selections" Background="LightGray" BorderThickness="3" FontSize="20" Foreground="Black"> <toolkit:ListPicker.ItemTemplate> <DataTemplat

我无法理解为什么我看不到此listpicker的标题名称

代码如下:

 <toolkit:ListPicker x:Name="MyListPicker" Header="Selections" Background="LightGray" BorderThickness="3" FontSize="20" Foreground="Black">
      <toolkit:ListPicker.ItemTemplate>
        <DataTemplate>
          <StackPanel Orientation="Horizontal">
            <TextBlock Text="{Binding}" Margin="12 0 0 0" Foreground="Black"/>
          </StackPanel>
        </DataTemplate>
      </toolkit:ListPicker.ItemTemplate>
      <sys:String>one</sys:String>
      <sys:String>two</sys:String>
      <sys:String>three</sys:String>
      </toolkit:ListPicker>

一
二
三

是否将发布您的MyCustomStyle?很抱歉,我发布了旧版本。我没有我的定制风格。更新了上面的代码。你看到了什么?在哪里设置ItemsSource的datacontext/绑定?为什么要在控件体中使用字符串?我有一个白色背景。我可以看到下拉列表中的项目,但看不到列表选择器的标签。如何设置listpicker标签的前景?