コード例 #1
0
ファイル: TransferControl.xaml.cs プロジェクト: amacal/ine
 private Action<long, long> SetProgress(Dispatcher dispatcher, ResourceModel model)
 {
     return (received, total) =>
     {
         dispatcher.Handle(() => model.SetProgress(received, total));
     };
 }