예제 #1
0
 private void ZipPage_Appearing(object sender, EventArgs e)
 {
     if (Debugger.IsAttached)
     {
         var model = ZipPageModel.GetSingleton(this.Navigation);
         if (string.IsNullOrEmpty(model.ZipCode))
         {
             model.ZipCode = "31750";
         }
     }
 }
예제 #2
0
 public ZipPage()
 {
     InitializeComponent();
     this.BindingContext = ZipPageModel.GetSingleton(this.Navigation);
     this.Appearing     += ZipPage_Appearing;
 }