コード例 #1
0
ファイル: StrokeExtensions.cs プロジェクト: sung-su/maui
        public static void UpdateStrokeShape(this ContentPanel platformView, IBorderStroke border)
        {
            var shape = border.Shape;

            if (shape == null)
            {
                return;
            }

            platformView.UpdateBorderShape(shape);
        }