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.
27 lines
597 B
27 lines
597 B
namespace Qwirkle.Views;
|
|
using Microsoft.Maui.Controls;
|
|
public partial class EntryPlayer : ContentView
|
|
{
|
|
|
|
public static readonly BindableProperty EntryProperty = BindableProperty.Create("Entry", typeof(EntryPlayer), typeof(object));
|
|
|
|
public EntryPlayer Entry
|
|
{
|
|
get => (EntryPlayer)GetValue(EntryProperty);
|
|
set => SetValue(EntryProperty, value);
|
|
}
|
|
public EntryPlayer()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
|
|
public string TextHolder { get; set; } = "None";
|
|
|
|
|
|
public string TextOn { get; set; } = "None";
|
|
|
|
public string? TextIn { get; set; }
|
|
|
|
|
|
} |