如何在xaml中添加方形边框

时间:2018-05-05 20:05:20

标签: .net xaml xamarin.forms

我正在研究xamarin表单并使用xaml来创建UI。

enter image description here

请参阅上面的图片,让我知道如何在xaml中绘制此图像并且图像编号是动态的

2 个答案:

答案 0 :(得分:2)

您可以使用Frame,这是一个简单的示例:

<Frame OutlineColor="White" BackgroundColor="Black">
    <Label Text="{Binding MyNumber}" TextColor="White" />
</Frame>

结果:
enter image description here

答案 1 :(得分:0)

使用AbsoluteLayout并使用图片(或更好的svg),在其上添加Label绑定到int值。