■ ControlTemplate 엘리먼트를 사용해 ContentView 엘리먼트를 정의하는 방법을 보여준다.
▶ CardView.cs
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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
namespace TestProject; /// <summary> /// 카드 뷰 /// </summary> public partial class CardView : ContentView { //////////////////////////////////////////////////////////////////////////////////////////////////// Bindable Property ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 테두리 색상 속성 - BorderColorProperty /// <summary> /// 테두리 색상 속성 /// </summary> public static readonly BindableProperty BorderColorProperty = BindableProperty.Create ( nameof(BorderColor), typeof(Color), typeof(CardView), Colors.DarkGray ); #endregion #region 카드 색상 속성 - CardColorProperty /// <summary> /// 카드 색상 속성 /// </summary> public static readonly BindableProperty CardColorProperty = BindableProperty.Create ( nameof(CardColor), typeof(Color), typeof(CardView), Colors.White ); #endregion #region 아이콘 배경 색상 속성 - IconBackgroundColorProperty /// <summary> /// 아이콘 배경 색상 속성 /// </summary> public static readonly BindableProperty IconBackgroundColorProperty = BindableProperty.Create ( nameof(IconBackgroundColor), typeof(Color), typeof(CardView), Colors.LightGray ); #endregion #region 아이콘 이미지 소스 속성 - IconImageSourceProperty /// <summary> /// 아이콘 이미지 소스 속성 /// </summary> public static readonly BindableProperty IconImageSourceProperty = BindableProperty.Create ( nameof(IconImageSource), typeof(ImageSource), typeof(CardView), default(ImageSource) ); #endregion #region 카드 제목 속성 - CardTitleProperty /// <summary> /// 카드 제목 속성 /// </summary> public static readonly BindableProperty CardTitleProperty = BindableProperty.Create ( nameof(CardTitle), typeof(string), typeof(CardView), string.Empty ); #endregion #region 카드 설명 속성 - CardDescriptionProperty /// <summary> /// 카드 설명 속성 /// </summary> public static readonly BindableProperty CardDescriptionProperty = BindableProperty.Create ( nameof(CardDescription), typeof(string), typeof(CardView), string.Empty ); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 테두리 색상 - BorderColor /// <summary> /// 테두리 색상 /// </summary> public Color BorderColor { get => (Color)GetValue(BorderColorProperty); set => SetValue(BorderColorProperty, value); } #endregion #region 카드 색상 - CardColor /// <summary> /// 카드 색상 /// </summary> public Color CardColor { get => (Color)GetValue(CardColorProperty); set => SetValue(CardColorProperty, value); } #endregion #region 아이콘 배경 색상 - IconBackgroundColor /// <summary> /// 아이콘 배경 색상 /// </summary> public Color IconBackgroundColor { get => (Color)GetValue(IconBackgroundColorProperty); set => SetValue(IconBackgroundColorProperty, value); } #endregion #region 아이콘 이미지 소스 - IconImageSource /// <summary> /// 아이콘 이미지 소스 /// </summary> public ImageSource IconImageSource { get => (ImageSource)GetValue(IconImageSourceProperty); set => SetValue(IconImageSourceProperty, value); } #endregion #region 카드 제목 - CardTitle /// <summary> /// 카드 제목 /// </summary> public string CardTitle { get => (string)GetValue(CardTitleProperty); set => SetValue(CardTitleProperty, value); } #endregion #region 카드 설명 - CardDescription /// <summary> /// 카드 설명 /// </summary> public string CardDescription { get => (string)GetValue(CardDescriptionProperty); set => SetValue(CardDescriptionProperty, value); } #endregion } |
▶ 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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
<?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" xmlns:local="clr-namespace:TestProject"> <ContentPage.Resources> <ControlTemplate x:Key="CardViewControlTemplateKey"> <Frame x:Name="frame" HorizontalOptions="Center" VerticalOptions="Center" CornerRadius="10" BorderColor="{TemplateBinding BorderColor}" BackgroundColor="{TemplateBinding CardColor}" Padding="10" HasShadow="True"> <Frame.Shadow> <Shadow Offset="20,20" Radius="40" Opacity="0.8" Brush="Black" /> </Frame.Shadow> <Grid> <Grid.RowDefinitions> <RowDefinition Height="75" /> <RowDefinition Height="4" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="75" /> <ColumnDefinition Width="200" /> </Grid.ColumnDefinitions> <Frame HorizontalOptions="Center" VerticalOptions="Center" WidthRequest="60" HeightRequest="60" CornerRadius="38" BorderColor="{TemplateBinding BorderColor}" BackgroundColor="{TemplateBinding IconBackgroundColor}" IsClippedToBounds="True"> <Image Margin="-20" WidthRequest="100" HeightRequest="100" Aspect="AspectFill" Source="{TemplateBinding IconImageSource}" /> </Frame> <Label Grid.Column="1" HorizontalTextAlignment="Start" VerticalTextAlignment="Center" FontAttributes="Bold" FontSize="18" TextColor="Black" Text="{TemplateBinding CardTitle}" /> <BoxView Grid.Row="1" Grid.ColumnSpan="2" HorizontalOptions="Fill" HeightRequest="2" BackgroundColor="{TemplateBinding BorderColor}" /> <Label Grid.Row="2" Grid.ColumnSpan="2" HorizontalOptions="Fill" VerticalOptions="Fill" VerticalTextAlignment="Start" FontAttributes="Italic" Text="{TemplateBinding CardDescription}" /> </Grid> </Frame> </ControlTemplate> </ContentPage.Resources> <StackLayout HorizontalOptions="Center" VerticalOptions="Center" Spacing="10"> <local:CardView x:Name="cardView1" ControlTemplate="{StaticResource CardViewControlTemplateKey}" HorizontalOptions="Center" BorderColor="DarkGray" IconBackgroundColor="SlateGray" IconImageSource="dotnet_bot.png" CardTitle="John Doe" CardDescription="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla elit dolor, convallis non interdum." /> <local:CardView ControlTemplate="{StaticResource CardViewControlTemplateKey}" HorizontalOptions="Center" BorderColor="DarkGray" IconBackgroundColor="SlateGray" IconImageSource="dotnet_bot.png" CardTitle="Jane Doe" CardDescription="Phasellus eu convallis mi. In tempus augue eu dignissim fermentum. Morbi ut lacus vitae eros lacinia." /> </StackLayout> </ContentPage> |