Button に枠線を表示するには BorderWidth プロパティを使用します。

以下にコードビハインドでButtonに枠線を表示する例を示します。

xaml側では、Buttonコントロールに「button1」「button2」という名前がついているものとします。

button1は枠線の幅を1に、button2は枠線の幅を2に設定しています。

MainPage.xaml.cs
  namespace buttonSample03
{
    public partial class MainPage : ContentPage
    {
        public MainPage()
        {
            InitializeComponent();

            button1.BorderWidth = 1;
            button2.BorderWidth = 2;
        }
    }
}

次にXamlでButtonに枠線を表示する例を示します。

MainPage.xaml
  <Button Text="BorderWidth=1" BorderWidth="1"/>
<Button Text="BorderWidth=2" BorderWidth="2"/>          


実行例を以下に示します。