Xamarin.Forms XAML에서 Margin의 위, 아래, 왼쪽 및 오른쪽 순서
3190 단어 XamlXamarinXamarin.Forms
XAML 에 Margin 이나 Padding (이른바
Thickness
)을 리터럴로 쓸 때의 순서는 「left, top, right, bottom」이다.<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MarginTest"
x:Class="MarginTest.MarginTestPage"
BackgroundColor="Silver">
<BoxView
Margin="10, 20, 30, 40"
BackgroundColor="Red"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand" />
</ContentPage>
""왼쪽"을 시작으로 시계 주위"라고 기억하고 싶다.
Thickness의 생성자 인수를 볼 수 있습니다.
// syntax
public Thickness (Double left, Double top, Double right, Double bottom)
그건 그렇고, css
margin: 10px 20px 30px 40px;
는 "위"를 시작으로 시계 주위, 혼란 스럽다.
Reference
이 문제에 관하여(Xamarin.Forms XAML에서 Margin의 위, 아래, 왼쪽 및 오른쪽 순서), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/amay077/items/2237999391aa1c932ee1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)