예제 #1
0
 void client_GetHouseIssueAndNoticeInfosCompleted(object sender, GetHouseIssueAndNoticeInfosCompletedEventArgs e)
 {
     //throw new NotImplementedException();
     if (!e.Cancelled)
     {
         if (e.Result != null)
         {
             List <V_SystemNotice> aa = e.Result.ToList();
         }
     }
 }
예제 #2
0
 void client_GetHouseIssueAndNoticeInfosCompleted(object sender, GetHouseIssueAndNoticeInfosCompletedEventArgs e)
 {
     if (!e.Cancelled)
     {
         if (e.Result != null)
         {
             List<V_SystemNotice> aa = e.Result.ToList();
             DaGr.ItemsSource = aa;
         }
     }
 }
예제 #3
0
 void client_GetHouseIssueAndNoticeInfosCompleted(object sender, GetHouseIssueAndNoticeInfosCompletedEventArgs e)
 {
     if (!e.Cancelled)
     {
         if (e.Result != null)
         {
             List <V_SystemNotice> aa = e.Result.ToList();
             DaGr.ItemsSource = aa;
         }
     }
 }
예제 #4
0
        void client_GetHouseIssueAndNoticeInfosCompleted(object sender, GetHouseIssueAndNoticeInfosCompletedEventArgs e)
        {
            if (!e.Cancelled)
            {
                if (e.Result != null)
                {
                    NewsList.ItemsSource = null;
                    NewsList.ItemsSource = e.Result.ToList();

                    //_refdateTimer.Tick -= new EventHandler(_refdateTimer_Tick);
                    //_refdateTimer.Tick += new EventHandler(_refdateTimer_Tick);
                    //_refdateTimer.Start();

                    //List<V_SystemNotice> aa = e.Result.ToList();
                    //DaGr.ItemsSource = aa;
                }
            }
        }
예제 #5
0
파일: OAWebPart.xaml.cs 프로젝트: JuRogn/OA
        void client_GetHouseIssueAndNoticeInfosCompleted(object sender, GetHouseIssueAndNoticeInfosCompletedEventArgs e)
        {
            if (!e.Cancelled)
            {
                if (e.Result != null)
                {
                    NewsList.ItemsSource = null;
                    NewsList.ItemsSource = e.Result.ToList();

                    //_refdateTimer.Tick -= new EventHandler(_refdateTimer_Tick);
                    //_refdateTimer.Tick += new EventHandler(_refdateTimer_Tick);
                    //_refdateTimer.Start();

                    //List<V_SystemNotice> aa = e.Result.ToList();
                    //DaGr.ItemsSource = aa;
                }
            }
        }
예제 #6
0
 void client_GetHouseIssueAndNoticeInfosCompleted(object sender, GetHouseIssueAndNoticeInfosCompletedEventArgs e)
 {
     //throw new NotImplementedException();
     if (!e.Cancelled)
     {
         if (e.Result != null)
         {
             List<V_SystemNotice> aa = e.Result.ToList();
             
         }
     }
 }