gpt4 book ai didi

Xamarin.Forms - 标签不居中

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

我有一个包含 2 个标签的 StackView。一个是普通文本,另一个是 FontAwesome Icon。

enter image description here

无论如何,两个标签都没有在 StackView 内垂直居中。这是他们的代码:

样式:

        <Style x:Key="FAIconedLabel" TargetType="Label">
<Setter Property="TextColor" Value="White"/>
<Setter Property="FontSize" Value="40" />
<Setter Property="Margin" Value="0" />
</Style>

<Style x:Key="EmailLabel" TargetType="Label">
<Setter Property="TextColor" Value="White"/>
<Setter Property="FontSize" Value="20" />
</Style>

和 View 本身
        <!-- Top Right -->
<Grid BackgroundColor="{StaticResource LamaControlGray}"
RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToParent,
Property=Width,Factor=1,Constant=-400}"
RelativeLayout.WidthConstraint="{ConstraintExpression
Type=RelativeToParent,Property=Width,Factor=0,Constant=400}"
RelativeLayout.HeightConstraint="{ConstraintExpression
Type=RelativeToParent,Property=Height,Factor=0,Constant=40}" >
<StackLayout Orientation="Horizontal" HorizontalOptions="End" VerticalOptions="FillAndExpand" BackgroundColor="Red">
<Label x:Name="LblUserEmail" Margin="0,0,10,0" Text="{Binding UserEmail}" VerticalOptions="FillAndExpand" Style="{StaticResource EmailLabel}"/>
<fal:FontAwesomeLabel Text="{Binding SettingsIcon}" BackgroundColor="Green" VerticalOptions="CenterAndExpand" Style="{StaticResource FAIconedLabel}" />
</StackLayout>
</Grid>

我在这里想念什么吗?

编辑 1

我添加了一个 BackgroundColor 来查看,如果 Label 真的填满了 StackView

enter image description here

编辑 2

清理并重建解决方案后,电子邮件标签现在居中。但图标仍然留在底部

enter image description here

最佳答案

是的,你错过了一些东西。
您没有将其设置为垂直居中。

任何一个

<Label x:Name="LblUserEmail" Margin="0,0,10,0" Text="{Binding UserEmail}" VerticalOptions="FillAndExpand" VerticalTextAlignment="Center" Style="{StaticResource EmailLabel}"/>

或者
<Label x:Name="LblUserEmail" Margin="0,0,10,0" Text="{Binding UserEmail}" VerticalOptions="CenterAndExpand" Style="{StaticResource EmailLabel}"/>

关于Xamarin.Forms - 标签不居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49323660/

24 4 0