AdornerColors.RailFillColor, propriété
Obtient la couleur de remplissage pour les rails.
Espace de noms : Microsoft.Windows.Design.Interaction
Assembly : Microsoft.Windows.Design.Interaction (dans Microsoft.Windows.Design.Interaction.dll)
Syntaxe
'Déclaration
Public Shared ReadOnly Property RailFillColor As Color
Get
public static Color RailFillColor { get; }
public:
static property Color RailFillColor {
Color get ();
}
static member RailFillColor : Color
static function get RailFillColor () : Color
Valeur de propriété
Type : System.Windows.Media.Color
Color qui représente la couleur standard pour les rails dans le Concepteur WPF.
Exemples
L'exemple de code suivant indique comment utiliser la classe AdornerColors pour affecter le Background d'un contrôle Slider au RailFillColor standard. Pour plus d'informations, consultez Procédure pas à pas : implémentation d'un rail à l'intérieur d'un contrôle.
' Set the slider's background to the rail fill color.
skewSlider.Background = AdornerColors.RailFillBrush
// Set the slider's background to the rail fill color.
skewSlider.Background = AdornerColors.RailFillBrush;
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.Windows.Design.Interaction, espace de noms
PrimarySelectionAdornerProvider
Autres ressources
Procédure pas à pas : création d'un ornement au moment du design
Procédure pas à pas : implémentation d'un rail à l'intérieur d'un contrôle