DrawingAttributes.Width Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta la larghezza dello stilo utilizzato per disegnare l'oggetto Stroke.
public:
property double Width { double get(); void set(double value); };
public double Width { get; set; }
member this.Width : double with get, set
Public Property Width As Double
Valore della proprietà
Larghezza dello stilo utilizzato per disegnare l'oggetto Stroke.
Eccezioni
Esempio
Nell'esempio seguente viene illustrato come impostare la Width proprietà . Nell'esempio si presuppone che l'applicazione abbia un InkCanvas oggetto denominato e due DrawingAttributes oggetti denominati inkCanvas1
inkDA
e highlighterDA
. Per l'esempio completo, vedere la panoramica della DrawingAttributes classe.
// Set up the DrawingAttributes for the pen.
inkDA = new DrawingAttributes();
inkDA.Color = Colors.SpringGreen;
inkDA.Height = 5;
inkDA.Width = 5;
inkDA.FitToCurve = false;
inkDA.StylusTipTransform = new Matrix(1, 0, 0, 5, 0, 0);
// Set up the DrawingAttributes for the highlighter.
highlighterDA = new DrawingAttributes();
highlighterDA.Color = Colors.Orchid;
highlighterDA.IsHighlighter = true;
highlighterDA.IgnorePressure = true;
highlighterDA.StylusTip = StylusTip.Rectangle;
highlighterDA.Height = 30;
highlighterDA.Width = 10;
inkCanvas1.DefaultDrawingAttributes = inkDA;
' Set up the DrawingAttributes for the pen.
inkDA = New Ink.DrawingAttributes()
With inkDA
.Color = Colors.SpringGreen
.Height = 5
.Width = 5
.FitToCurve = True
.StylusTipTransform = New Matrix(1, 0, 0, 1, 20, 0)
End With
' Set up the DrawingAttributes for the highlighter.
highlighterDA = New Ink.DrawingAttributes()
With highlighterDA
.Color = Colors.Orchid
.IsHighlighter = True
.IgnorePressure = True
.StylusTip = StylusTip.Rectangle
.Height = 30
.Width = 10
End With
inkCanvas1.DefaultDrawingAttributes = inkDA
Commenti
I fattori seguenti influiscono sull'altezza e la larghezza di un oggetto Stroke quando viene eseguito il rendering, ma non sul valore della Width proprietà.
Quantità di pressione applicata allo stilo quando viene disegnato l'oggetto Stroke .
Il valore della proprietà StylusTipTransform.
Se si imposta la Width proprietà su 0 pixel indipendenti dal dispositivo (DIP), viene impostata su 2 DIP.
Utilizzo del testo XAML
Questa proprietà non viene in genere usata in XAML.