예제 #1
0
        private void calendarManagement_GetCalendarListByUserIDCompleted(object sender, GetCalendarListByUserIDCompletedEventArgs e)
        {
            loadbar.Stop();
            List <T_OA_CALENDAR> calendarList = null;

            System.DateTime myDateTime = System.DateTime.Now;
            if (e.Result != null)
            {
                calendarList = e.Result.ToList();
            }
            BindDgv(calendarList, e.pageCount);
        }
예제 #2
0
 private void calendarManagement_GetCalendarListByUserIDCompleted(object sender, GetCalendarListByUserIDCompletedEventArgs e)
 {
     loadbar.Stop();
     List<T_OA_CALENDAR> calendarList = null;
     System.DateTime myDateTime = System.DateTime.Now;
     if (e.Result != null)
     {
         calendarList = e.Result.ToList();
     }
     BindDgv(calendarList, e.pageCount);
 }