14 references to PenLineJoin
Microsoft.Maui.Controls (14)
Border\Border.cs (7)
160 BindableProperty.Create(nameof(StrokeLineJoin), typeof(PenLineJoin), typeof(Border), PenLineJoin.Miter); 203 public PenLineJoin StrokeLineJoin 206 get { return (PenLineJoin)GetValue(StrokeLineJoinProperty); } 231 PenLineJoin.Round => LineJoin.Round, 232 PenLineJoin.Bevel => LineJoin.Bevel, 233 PenLineJoin.Miter => LineJoin.Miter,
Shapes\Shape.cs (7)
79 BindableProperty.Create(nameof(StrokeLineJoin), typeof(PenLineJoin), typeof(Shape), PenLineJoin.Miter); 132 public PenLineJoin StrokeLineJoin 135 get { return (PenLineJoin)GetValue(StrokeLineJoinProperty); } 180 PenLineJoin.Round => LineJoin.Round, 181 PenLineJoin.Bevel => LineJoin.Bevel, 182 PenLineJoin.Miter => LineJoin.Miter,