DrawingContext.DrawRoundedRectangle Méthode
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.
Dessine un rectangle arrondi.
Surcharges
DrawRoundedRectangle(Brush, Pen, Rect, AnimationClock, Double, AnimationClock, Double, AnimationClock) |
Dessine un rectangle arrondi avec les Brush et Pen spécifiés et applique les horloges d'animation spécifiées. |
DrawRoundedRectangle(Brush, Pen, Rect, Double, Double) |
Dessine un rectangle arrondi avec les Brush et Pen spécifiés. |
DrawRoundedRectangle(Brush, Pen, Rect, AnimationClock, Double, AnimationClock, Double, AnimationClock)
public:
abstract void DrawRoundedRectangle(System::Windows::Media::Brush ^ brush, System::Windows::Media::Pen ^ pen, System::Windows::Rect rectangle, System::Windows::Media::Animation::AnimationClock ^ rectangleAnimations, double radiusX, System::Windows::Media::Animation::AnimationClock ^ radiusXAnimations, double radiusY, System::Windows::Media::Animation::AnimationClock ^ radiusYAnimations);
public abstract void DrawRoundedRectangle (System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Rect rectangle, System.Windows.Media.Animation.AnimationClock rectangleAnimations, double radiusX, System.Windows.Media.Animation.AnimationClock radiusXAnimations, double radiusY, System.Windows.Media.Animation.AnimationClock radiusYAnimations);
abstract member DrawRoundedRectangle : System.Windows.Media.Brush * System.Windows.Media.Pen * System.Windows.Rect * System.Windows.Media.Animation.AnimationClock * double * System.Windows.Media.Animation.AnimationClock * double * System.Windows.Media.Animation.AnimationClock -> unit
Public MustOverride Sub DrawRoundedRectangle (brush As Brush, pen As Pen, rectangle As Rect, rectangleAnimations As AnimationClock, radiusX As Double, radiusXAnimations As AnimationClock, radiusY As Double, radiusYAnimations As AnimationClock)
Paramètres
- brush
- Brush
Pinceau utilisé pour remplir le rectangle, ou null
pour aucun remplissage.
- pen
- Pen
Stylet utilisé pour tracer le rectangle, ou null
pour aucun trait.
- rectangle
- Rect
Rectangle à dessiner.
- rectangleAnimations
- AnimationClock
Horloge pour animer la taille et les dimensions du rectangle ou null
pour aucune animation. Cette horloge doit être créée à partir d'un AnimationTimeline qui peut animer des objets Rect.
- radiusX
- Double
Rayon dans la dimension X des angles arrondis. Cette valeur est ancrée à la plage de 0 à Width/2
- radiusXAnimations
- AnimationClock
Horloge avec laquelle animer la valeur radiusX
du rectangle, ou null
pour aucune animation. Cette horloge doit être créée à partir d'un AnimationTimeline qui peut animer des valeurs Double.
- radiusY
- Double
Rayon dans la dimension Y des angles arrondis. Cette valeur est ancrée à une valeur entre 0 et Height/2.
- radiusYAnimations
- AnimationClock
Horloge avec laquelle animer la valeur radiusY
du rectangle, ou null
pour aucune animation. Cette horloge doit être créée à partir d'un AnimationTimeline qui peut animer des valeurs Double.
Remarques
Le pinceau et le stylet peuvent tous les deux être null
. Si le pinceau est , aucun remplissage n’est null
effectué. Si le stylet est null
, alors aucune attise n’est effectuée. Si le stylet et le pinceau sont null
, le dessin n’est pas visible.
S’applique à
DrawRoundedRectangle(Brush, Pen, Rect, Double, Double)
public:
abstract void DrawRoundedRectangle(System::Windows::Media::Brush ^ brush, System::Windows::Media::Pen ^ pen, System::Windows::Rect rectangle, double radiusX, double radiusY);
public abstract void DrawRoundedRectangle (System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Rect rectangle, double radiusX, double radiusY);
abstract member DrawRoundedRectangle : System.Windows.Media.Brush * System.Windows.Media.Pen * System.Windows.Rect * double * double -> unit
Public MustOverride Sub DrawRoundedRectangle (brush As Brush, pen As Pen, rectangle As Rect, radiusX As Double, radiusY As Double)
Paramètres
- brush
- Brush
Pinceau utilisé pour remplir le rectangle.
- pen
- Pen
Stylet utilisé pour rayer le rectangle.
- rectangle
- Rect
Rectangle à dessiner.
- radiusX
- Double
Rayon dans la dimension X des angles arrondis. Cette valeur est ancrée à la plage de 0 à Width/2.
- radiusY
- Double
Rayon dans la dimension Y des angles arrondis. Cette valeur est ancrée à une valeur entre 0 et Height/2.
Remarques
Le pinceau et le stylet peuvent tous les deux être null
. Si le pinceau est , aucun remplissage n’est null
effectué. Si le stylet est null
, alors aucune attise n’est effectuée. Si le stylet et le pinceau sont null
, le dessin n’est pas visible.