You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
namespace ex_CustomContentView;
|
|
|
|
public partial class MyAvatarView : ContentView
|
|
{
|
|
public MyAvatarView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public static readonly BindableProperty ImageNameProperty =
|
|
BindableProperty.Create("ImageName", typeof(string), typeof(MyAvatarView), "");
|
|
|
|
public string ImageName
|
|
{
|
|
get => (string)GetValue(ImageNameProperty);
|
|
set => SetValue(ImageNameProperty, value);
|
|
}
|
|
|
|
public static readonly BindableProperty TitleProperty =
|
|
BindableProperty.Create("Title", typeof(string), typeof(MyAvatarView), "No Title");
|
|
|
|
public string Title
|
|
{
|
|
get => (string)GetValue(TitleProperty);
|
|
set => SetValue(TitleProperty, value);
|
|
}
|
|
|
|
public static readonly BindableProperty SubTitleProperty =
|
|
BindableProperty.Create("SubTitle", typeof(string), typeof(MyAvatarView), "Lorem Ipsum Dolor");
|
|
|
|
public string SubTitle
|
|
{
|
|
get => (string)GetValue(SubTitleProperty);
|
|
set => SetValue(SubTitleProperty, value);
|
|
}
|
|
|
|
public static readonly BindableProperty ColorProperty =
|
|
BindableProperty.Create("Color", typeof(Color), typeof(MyAvatarView), Colors.Gray);
|
|
|
|
public Color Color
|
|
{
|
|
get => (Color)GetValue(ColorProperty);
|
|
set => SetValue(ColorProperty, value);
|
|
}
|
|
} |