如何在Xamarin表单的按钮内添加不同类型的TextSize?

时间:2019-02-12 13:06:24

标签: xamarin xamarin.forms

我想添加一个按钮,该按钮具有两个具有不同TextSize的文本。 这是样本 enter image description here

该怎么做?

1 个答案:

答案 0 :(得分:1)

为什么不使用按钮而不是按钮,将文本添加为​​具有不同文本大小的标签,然后为该框提供点击手势?

将此添加到OnAppearing

var my_tap = new TapGestureRecognizer();
my_tap.Tapped += (s, e) =>
     {
         // do your thing;
      };
YourBoxView.GestureRecognizers.Add(connect_tap);

或StackLayout:

<StackLayout x:Name="buttonStack" BackgroudColor="Blue">
            <StackLayout.GestureRecognizers>
                <TapGestureRecognizer Tapped="YourCode"></TapGestureRecognizer>
            </StackLayout.GestureRecognizers>
    <Label FontSize="Large">your text</Label>
    <Label FontSize="Small">your other text</Label>
</StackLayout>