첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
------------------------------------------------------------------------------------------------------------------------------------------------------
728x90
728x170

TestProject.zip
0.15MB

▶ MainPage.xaml

<?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">
    <ContentPage.Resources>
        <Style x:Key="LabelStyleKey" TargetType="Label">
            <Setter Property="TextColor" Value="{AppThemeBinding Black, Light=Blue, Dark=Teal}" />
        </Style>
    </ContentPage.Resources>
    <StackLayout
        Margin="10"
        HorizontalOptions="Center"
        VerticalOptions="Center">
        <Label
            HorizontalOptions="Center"
            TextColor="{AppThemeBinding Light=Green, Dark=Red}"
            Text="This text is green in light mode, and red in dark mode." />
        <Label
            Style="{StaticResource LabelStyleKey}"
            Margin="0,50,0,0"
            HorizontalOptions="Center"
            Text="This text is black by default, blue in light mode, and teal in dark mode." />
    </StackLayout>
</ContentPage>
728x90
그리드형(광고전용)
Posted by icodebroker
,