gpt4 book ai didi

xaml - 在 ItemTemplate 上设置属性

转载 作者:行者123 更新时间:2023-12-04 16:16:33 25 4
gpt4 key购买 nike

当 PivotItem 声明为:

<phone:Pivot Margin="50,0,50,0">
<phone:PivotItem Margin="0">
<TextBlock>Text</TextBlock>
</phone:PivotItem>
</phone:Pivot>

但是我在使用绑定(bind)的时候如何设置Margin:

<phone:Pivot Margin="50,0,50,0">
<phone:Pivot.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Body}"/>
</DataTemplate>
</phone:Pivot.ItemTemplate>
</phone:Pivot>

如何在 DataTemplate 上设置边距?

最佳答案

您可以尝试使用如下样式:

<phone:Pivot Margin="50,0,50,0">
<phone:Pivot.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Body}"/>
</DataTemplate>
</phone:Pivot.ItemTemplate>
<phone:Pivot.ItemContainerStyle>
<Style TargetType="phone:PivotItem">
<Setter Property="Margin" Value="0"/>
</Style>
</phone:Pivot.ItemContainerStyle>
</phone:Pivot>

关于xaml - 在 ItemTemplate 上设置属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21509374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com