Sdílet prostřednictvím


Pen.EndLineCap Vlastnost

Definice

Získá nebo nastaví typ obrazce, který se má použít na konci tahu.

public:
 property System::Windows::Media::PenLineCap EndLineCap { System::Windows::Media::PenLineCap get(); void set(System::Windows::Media::PenLineCap value); };
public System.Windows.Media.PenLineCap EndLineCap { get; set; }
member this.EndLineCap : System.Windows.Media.PenLineCap with get, set
Public Property EndLineCap As PenLineCap

Hodnota vlastnosti

PenLineCap

Typ obrazce, který ukončí tah. Výchozí hodnota je Flat.

Příklady

Následující příklad ukazuje, jak pomocí StartLineCap vlastností EndLineCap vytvořit zaokrouhlený konec na jedné straně tahu a trojúhelníkový konec na druhé straně tahu.

<Page 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <StackPanel Margin="20">

    <Canvas Margin="100"  Width="100" Height="100">
      <Canvas.Background>
        <DrawingBrush>
          <DrawingBrush.Drawing>
            <GeometryDrawing>
              <GeometryDrawing.Geometry>
                <LineGeometry StartPoint="10,10" EndPoint="50,100" />
              </GeometryDrawing.Geometry>
              <GeometryDrawing.Pen>
                
                <!-- This Pen specifies a round line cap at the beginning of
                     the line and a triangular line cap at the end of the line. -->
                <Pen Brush="Blue" Thickness="8"  StartLineCap="Round" 
                     EndLineCap="Triangle" />
              </GeometryDrawing.Pen>
            </GeometryDrawing>
          </DrawingBrush.Drawing>
        </DrawingBrush>
      </Canvas.Background>
    </Canvas>

  </StackPanel>

</Page>

Poznámky

Informace o vlastnosti závislosti

Pole identifikátoru EndLineCapProperty
Vlastnosti metadat nastavené na true Žádné

Platí pro

Viz také