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.
sae201_qwirkle/Qwirkle/QwirkleViews/Views/EntryPlayer.xaml.cs

27 lines
726 B

namespace Qwirkle.Views;
using Microsoft.Maui.Controls;
public partial class EntryPlayer : ContentView
{
public EntryPlayer()
{
InitializeComponent();
}
public static readonly BindableProperty TextInProperty =
BindableProperty.Create("TextIn", typeof(string), typeof(Button), "none");
public string TextIn
{
get => (string)GetValue(TextInProperty);
set => SetValue(TextInProperty, value);
}
public static readonly BindableProperty TextOnProperty =
BindableProperty.Create("TextOn", typeof(string), typeof(Button), "none");
public string TextOn
{
get => (string)GetValue(TextOnProperty);
set => SetValue(TextOnProperty, value);
}
}