■ x:Arguments 엘리먼트에서 생성자 인수를 전달하는 방법을 보여준다.
▶ 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 |
<?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"> <StackLayout HorizontalOptions="Center" VerticalOptions="Center"> <BoxView HeightRequest="150" WidthRequest="150" HorizontalOptions="Center"> <BoxView.Color> <Color> <x:Arguments> <x:Single>0.9</x:Single> </x:Arguments> </Color> </BoxView.Color> </BoxView> <BoxView Margin="0,10,0,0" HeightRequest="150" WidthRequest="150" HorizontalOptions="Center"> <BoxView.Color> <Color> <x:Arguments> <x:Single>0.25</x:Single> <x:Single>0.5</x:Single> <x:Single>0.75</x:Single> </x:Arguments> </Color> </BoxView.Color> </BoxView> <BoxView Margin="0,10,0,0" HeightRequest="150" WidthRequest="150" HorizontalOptions="Center"> <BoxView.Color> <Color> <x:Arguments> <x:Single>0.8</x:Single> <x:Single>0.5</x:Single> <x:Single>0.2</x:Single> <x:Single>0.5</x:Single> </x:Arguments> </Color> </BoxView.Color> </BoxView> </StackLayout> </ContentPage> |