モノタッチダイアログでビューを作成する場合、考えられる1つの方法は、.cs
次のようにビュー情報を保持するファイルを作成することです。
[Caption("Create user")]
[Alignment(UITextAlignment.Center)]
public RegistrationSchema CreateAccount;
ただし、次のように、ボタンを動的に追加する必要があるとします。
//This is what I'd like to do, but there doesn't seem to be any support for this
_newUserSection = new Section("Create user) {
new RegistrationSchema()
};
何か案は?
マイRegistrationSchema.cs
ファイルを編集
public class RegistrationSchema
{
[Section("Fill out the form")]
[Caption("E-mail")]
[Entry(KeyboardType=UIKeyboardType.EmailAddress)]
public string Email;
//more stuff here
}