gpt4 book ai didi

c# - 标签从不显示

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:28:39 28 4
gpt4 key购买 nike

我试图在我的按钮上方添加标签,但标签从未显示。这是我正在使用的代码 xaml。是什么让标签无法显示?

            <Frame HasShadow="False">
<StackLayout Orientation="Vertical" Spacing="10">
<Label x:Name="registererror" Text="Error, please verify all fields have valid input" TextColor="Red" />
</StackLayout>
<Button Command="{Binding SubmitCommand}" Text="Register" TextColor="White"
FontAttributes="Bold" FontSize="Large" HorizontalOptions="FillAndExpand"
BackgroundColor="#088da5" Clicked="OnRegisterTap" />
</Frame>

最佳答案

一个框架只能有一个 child 。要包含多个 child ,您必须使用布局容器。您的 Button 未包含在 StackLayout 中。

 <Frame HasShadow="False">
<StackLayout Orientation="Vertical" Spacing="10">
<Label x:Name="registererror" Text="Error, please verify all fields have valid input" TextColor="Red" />

<Button Command="{Binding SubmitCommand}" Text="Register" TextColor="White"
FontAttributes="Bold" FontSize="Large" HorizontalOptions="FillAndExpand"
BackgroundColor="#088da5" Clicked="OnRegisterTap" />
</StackLayout>
</Frame>

关于c# - 标签从不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53469364/

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