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.
29 lines
765 B
29 lines
765 B
namespace Stim;
|
|
public partial class UserInfo : ContentView
|
|
{
|
|
public static readonly BindableProperty BindProperty =
|
|
BindableProperty.Create(nameof(Bind), typeof(string), typeof(UserInfo), string.Empty, propertyChanged: OnBindChanged);
|
|
|
|
public string Bind
|
|
{
|
|
get { return (string)GetValue(BindProperty); }
|
|
set { SetValue(BindProperty, value); }
|
|
}
|
|
|
|
private static void OnBindChanged(BindableObject bindable, object oldValue, object newValue)
|
|
{
|
|
var contentView = (UserInfo)bindable;
|
|
}
|
|
|
|
public UserInfo()
|
|
{
|
|
InitializeComponent();
|
|
BindingContext = ((App)App.Current).Manager;
|
|
}
|
|
|
|
private void Button_Clicked(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|