Xamarin Forms Span保留空白

时间:2018-10-22 18:07:27

标签: c# xaml xamarin.forms

我如何在Xamarin表单中的格式化文本标签中保留空格,但我似乎无法使用

            <Label FontSize="Medium">
                <Label.FormattedText>
                    <FormattedString>
                        <Span xml:space="preserve">On PO: </Span>
                        <Span xml:space="preserve"> </Span>
                        <Span FontAttributes="Bold"  FontSize="Large" Text="{Binding Qty}"/>
                    </FormattedString>
                </Label.FormattedText>
            </Label>

我收到此错误

Error Position 22:35. No property, bindable property, or event found for 'space', or mismatching type between value and property.

1 个答案:

答案 0 :(得分:3)

使用跨度的text属性提供空格。

 <Label FontSize="Medium">
            <Label.FormattedText>
                <FormattedString>
                    <Span Text="On PO: "/>
                    <Span Text=" "/>
                    <Span FontAttributes="Bold"  FontSize="Large" Text="{Binding Qty}"/>
                </FormattedString>
            </Label.FormattedText>
 </Label>