■ FlexLayout 엘리먼트의 Shrink 첨부 속성을 사용하는 방법을 보여준다. (프리뷰 버전 오류)
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
<?xml version="1.0" encoding="utf-8" ?> <ContentPage x:Class="TestProject.MainPage" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"> <Frame Margin="10" CornerRadius="0" BorderColor="Black" Padding="2,2,2,2"> <FlexLayout Direction="Column" AlignItems="Center"> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView FlexLayout.Shrink="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> </FlexLayout> </Frame> </ContentPage> |
※ 프리뷰 버전 테스트시, Shirnk 첨부 속성을 설정하나 안하나 동일하게 표시되었고, 9개의 BoxView 높이가 85로 예상했으나 처음과 마지막은 77과 93이었다. 이 둘을 평균내면 85가 되어 버그로 추정되나 MSDN의 설명이 부족해서 정확한 사용법을 모르겠다.