我在XAML中使用列表视图,并在codw下面使用它绘制一个矩形框,我想在该框内放置一个2个字母的字母,就像Windows Phone联系人将它们放在该矩形框内一样。有什么办法可以在矩形框内放置文本
<BoxView Color="Green" WidthRequest="50" HeightRequest="20" HorizontalOptions="Start">
答案 0 :(得分:1)
您要复制WinPhone上的外观。
(对不起,没有代码,我没有电脑)
希望这会有所帮助。
答案 1 :(得分:0)
You can use like this
<StackLayout Padding="1" BackgroundColor="Black" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<StackLayout BackgroundColor="White" HorizontalOptions="FillAndExpand" >
<Label Text="Sample" TextColor="Black" HorizontalTextAlignment="Start"/>
</StackLayout>
</StackLayout>
May this will solve the problem.