我对我的 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) => {};
没有开火有人知道我错过了什么或忘记了我没有看到问题吗?