예제 #1
0
 void sc_get_hos_catCompleted(object sender, get_hos_catCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         pic_hos_cat_tbl[] r = new pic_hos_cat_tbl[e.Result.Count];
         r = e.Result.ToArray();
         lst_cat.Items.Clear();
         for (int i = 0; i < e.Result.Count; i++)
         {
             pic_hos_cat_tbl b = new pic_hos_cat_tbl();
             b.hos_cat_id   = Convert.ToInt32(r[i].hos_cat_id.ToString());
             b.hos_cat_name = r[i].hos_cat_name.ToString();
             lst_cat.Items.Add(b);
         }
     }
 }
예제 #2
0
        private void lst_cat_SelectionChanged_1(object sender, SelectionChangedEventArgs e)
        {
            pic_hos_cat_tbl c = (pic_hos_cat_tbl)lst_cat.SelectedItem;

            NavigationService.Navigate(new Uri("/hos_list.xaml?id=" + c.hos_cat_id, UriKind.RelativeOrAbsolute));
        }