我是Windows手机的新手,
我只想添加按钮,Pivot item two
是否可以添加?
<!--Pivot Control-->
<phone:Pivot Margin="0,20,0,0">
<!--Pivot item one-->
<phone:PivotItem Header="one">
**I Want to add Button here**
**I Want to add LongListSelector here**
</phone:PivotItem>
<!--Pivot item two-->
<phone:PivotItem Header="two">
....
</phone:PivotItem>
<!--Pivot item three-->
<phone:PivotItem Header="three">
....
</phone:PivotItem>
</phone:Pivot>
请提前帮助和感谢。
编辑:
<phone:PivotItem Header="Events" Margin="12,74,12,0">
<StackPanel>
</StackPanel>
<StackPanel>
<phone:LongListSelector Margin="0,-20,-12,0" ItemsSource="{Binding Items}">
<phone:LongListSelector.ItemTemplate>
<DataTemplate>
<StackPanel Margin="0,0,0,17">
<TextBlock Text="{Binding LineOne}" TextWrapping="Wrap" Style="{StaticResource PhoneTextExtraLargeStyle}"/>
</StackPanel>
</DataTemplate>
</phone:LongListSelector.ItemTemplate>
</phone:LongListSelector>
</StackPanel>
</phone:PivotItem>