Stepperは、[+]をタップすると1を加算し、[-]をタップすると1を減算します。このように増減値の既定値は1になっています。

増減値は、Increment プロパティで変更することができます。

以下は、Xamlで増減値を"10"を設定する例です。

MainPage.xaml
  <!-- 増減値を10に設定 -->
<Stepper x:Name="stepper1" Value="0" Increment="10" />

<!-- Stepperの現在値を表示 -->
<Label Text="{Binding Source={x:Reference stepper1}, Path=Value, StringFormat='{0:F0}'}"
            HorizontalOptions="Center"
            VerticalOptions="CenterAndExpand" />


コードで増減値を10に設定するには、以下のようにします。

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

            // 増減値を10に設定
            stepper1.Increment = 10;

            // 現在値を0に設定
            stepper1.Value = 0;
        }
    }
}



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