我是Xamarin.Forms的新手,并像使用WPF一样尝试使用Caliburn Micro。 但是我的按钮单击不会触发?
到目前为止,我的主视图确实显示在已连接的手机上! 我知道这是非常基本的,但是我无法正常工作
<Button x:Name="Connect" Grid.Row="1" Text="Connect" TextColor="Gainsboro" BackgroundColor="green" />
在我看来,模型:
public void Connect()
{
IntroLabel = "Caliburn.Micro!";
}
亲切问候
Johan