예제 #1
0
 public override void Refresh()
 {
     if (Dates != null && Items != null)
     {
         var loader = new JournalLoader(this);
         loader.Loaded += delegate { OnRefreshed(); };
         loader.LoadAsync();
     }
 }
예제 #2
0
 public override void Load()
 {
     if (Dates == null && Items == null)
     {
         var loader = new JournalLoader(this);
         loader.Loaded += delegate { OnLoaded(); };
         loader.LoadAsync();
     }
 }