■ x:Reference 태그 확장을 사용하는 방법을 보여준다.
▶ 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 |
<?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"> <Label HorizontalOptions="Center" VerticalOptions="Center" BindingContext="{x:Reference slider}" Rotation="{Binding Path=Value}" FontSize="Large" FontAttributes="Bold" Text="ROTATION" /> <Slider x:Name="slider" Margin="0,100,0,0" VerticalOptions="Center" Maximum="360" /> <Label Margin="0,10,0,0" HorizontalOptions="Center" BindingContext="{x:Reference slider}" FontSize="Large" FontAttributes="Bold" Text="{Binding Value, StringFormat='The angle is {0:F0} degrees'}" /> </StackLayout> </ContentPage> |