@@ -36,29 +36,29 @@ public Thickness Padding
36
36
}
37
37
38
38
public static readonly BindableProperty StrokeShapeProperty =
39
- BindableProperty . Create ( nameof ( StrokeShape ) , typeof ( IShape ) , typeof ( Layout ) , null ) ;
39
+ BindableProperty . Create ( nameof ( StrokeShape ) , typeof ( IShape ) , typeof ( Border ) , null ) ;
40
40
41
41
public static readonly BindableProperty StrokeProperty =
42
- BindableProperty . Create ( nameof ( Stroke ) , typeof ( Brush ) , typeof ( Layout ) , null ) ;
42
+ BindableProperty . Create ( nameof ( Stroke ) , typeof ( Brush ) , typeof ( Border ) , null ) ;
43
43
44
44
public static readonly BindableProperty StrokeThicknessProperty =
45
- BindableProperty . Create ( nameof ( StrokeThickness ) , typeof ( double ) , typeof ( Layout ) , 1.0 , propertyChanged : StrokeThicknessChanged ) ;
45
+ BindableProperty . Create ( nameof ( StrokeThickness ) , typeof ( double ) , typeof ( Border ) , 1.0 , propertyChanged : StrokeThicknessChanged ) ;
46
46
47
47
public static readonly BindableProperty StrokeDashArrayProperty =
48
- BindableProperty . Create ( nameof ( StrokeDashArray ) , typeof ( DoubleCollection ) , typeof ( Layout ) , null ,
48
+ BindableProperty . Create ( nameof ( StrokeDashArray ) , typeof ( DoubleCollection ) , typeof ( Border ) , null ,
49
49
defaultValueCreator : bindable => new DoubleCollection ( ) ) ;
50
50
51
51
public static readonly BindableProperty StrokeDashOffsetProperty =
52
- BindableProperty . Create ( nameof ( StrokeDashOffset ) , typeof ( double ) , typeof ( Layout ) , 0.0 ) ;
52
+ BindableProperty . Create ( nameof ( StrokeDashOffset ) , typeof ( double ) , typeof ( Border ) , 0.0 ) ;
53
53
54
54
public static readonly BindableProperty StrokeLineCapProperty =
55
- BindableProperty . Create ( nameof ( StrokeLineCap ) , typeof ( PenLineCap ) , typeof ( Layout ) , PenLineCap . Flat ) ;
55
+ BindableProperty . Create ( nameof ( StrokeLineCap ) , typeof ( PenLineCap ) , typeof ( Border ) , PenLineCap . Flat ) ;
56
56
57
57
public static readonly BindableProperty StrokeLineJoinProperty =
58
- BindableProperty . Create ( nameof ( StrokeLineJoin ) , typeof ( PenLineJoin ) , typeof ( Layout ) , PenLineJoin . Miter ) ;
58
+ BindableProperty . Create ( nameof ( StrokeLineJoin ) , typeof ( PenLineJoin ) , typeof ( Border ) , PenLineJoin . Miter ) ;
59
59
60
60
public static readonly BindableProperty StrokeMiterLimitProperty =
61
- BindableProperty . Create ( nameof ( StrokeMiterLimit ) , typeof ( double ) , typeof ( Layout ) , 10.0 ) ;
61
+ BindableProperty . Create ( nameof ( StrokeMiterLimit ) , typeof ( double ) , typeof ( Border ) , 10.0 ) ;
62
62
63
63
[ System . ComponentModel . TypeConverter ( typeof ( StrokeShapeTypeConverter ) ) ]
64
64
public IShape ? StrokeShape
0 commit comments