我对我的XAMARIN C #android项目有疑问 目前我有这个问题我的代码:
[Activity(Label = "Dashboard")]
public class Index : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.Index);
Button Contact = FindViewById<Button>(Resource.Id.BtnContact);
Contact.Click += (sender, e) =>
{
StartActivity(new Intent(this, typeof(Contact)));
//SetContentView(Resource.Layout.Contact);
};
}
}
我在Index.axml中创建了一个按钮,并在Index.axml的XML中引用了该按钮,但是
Contact.Click += (sender, e) => {};
是不是在发火,有人知道我错过了什么或忘记了我没有看到问题吗?