Example #1
0
        void GetFlowDefineCompleted(object sender, FlowDesignerWS.GetFlowDefineCompletedEventArgs e)
        {
            if (e.Result == null)
                MessageBox.Show("没有数据或取出数据失败!");
            else
              {
                  DgView.ItemsSource = e.Result;
                  dataPager.PageCount = e.pageCount;
              }

        }
Example #2
0
 void LoadAttrbuteList(object sender, FlowDesignerWS.GetSystemBOAttributeListCompletedEventArgs e)
 {
     if (e.Result != null)
     {
         cboCoditionAttribute.ItemsSource = e.Result.ToList();
         cboCoditionAttribute.SelectedIndex = 0;
     }
 }