/**********保存ボタンを押した時**************************/ private void Set_Save_Clicked(object sender, EventArgs e) { if (notice == 0) { DisplayAlert("通知日数エラー", "通知日数を選択してください", "OK"); } else { /* * SettingModel.UpdateSetting(1,notice); * DisplayAlert("通知日数", notice.ToString(), "OK"); */ FoodModel.InsertFood02(notice); DisplayAlert("通知日数", notice.ToString(), "OK"); } }
public SettingPage(string title) { if (SettingModel.SelectSetting() != null) { //タブに表示される文字列 Title = title; InitializeComponent(); } else { //SettingModel.InsertSetting(1, 3); SettingModel.InsertSetting(1, 3); FoodModel.InsertFood02(3); //タブに表示される文字列 Title = title; InitializeComponent(); } }