Slider Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Slider() |
Initialise une nouvelle instance de la classe Slider. |
Slider(Double, Double, Double) |
Initialise une nouvelle instance de la classe Slider. |
Slider()
Initialise une nouvelle instance de la classe Slider.
public Slider ();
Remarques
L’exemple suivant illustre une utilisation de base.
using System;
using Xamarin.Forms;
namespace FormsGallery
{
class SliderDemoPage : ContentPage
{
Label label;
public SliderDemoPage()
{
Label header = new Label
{
Text = "Slider",
Font = Font.BoldSystemFontOfSize(50),
HorizontalOptions = LayoutOptions.Center
};
Slider slider = new Slider
{
Minimum = 0,
Maximum = 100,
VerticalOptions = LayoutOptions.CenterAndExpand
};
slider.ValueChanged += OnSliderValueChanged;
label = new Label
{
Text = "Slider value is 0",
Font = Font.SystemFontOfSize(NamedSize.Large),
HorizontalOptions = LayoutOptions.Center,
VerticalOptions = LayoutOptions.CenterAndExpand
};
// Accomodate iPhone status bar.
this.Padding = new Thickness(10, Device.OnPlatform(20, 0, 0), 10, 5);
// Build the page.
this.Content = new StackLayout
{
Children =
{
header,
slider,
label
}
};
}
void OnSliderValueChanged(object sender, ValueChangedEventArgs e)
{
label.Text = String.Format("Slider value is {0:F1}", e.NewValue);
}
}
}
S’applique à
Slider(Double, Double, Double)
Initialise une nouvelle instance de la classe Slider.
public Slider (double min, double max, double val);
new Xamarin.Forms.Slider : double * double * double -> Xamarin.Forms.Slider
Paramètres
- min
- System.Double
Valeur minimale pouvant être sélectionnée.
- max
- System.Double
Valeur maximale pouvant être sélectionnée.
- val
- System.Double
Valeur réelle.