0
私はwinformsでRxを使うことを学んでいます。私はこのコードを使用するとき私のprogressBarを更新する方法を教えてください。Winformsのリアクティブエクステンション
Observable.ToAsync<Boolean>(DoLogin)().ObserveOnDispatcher().Subscribe(
l => {
XtraMessageBox.Show(this, "Welcome " + DefaultManager.Principal.Identity.Name, "Loged in successfully", MessageBoxButtons.OK, MessageBoxIcon.Information);
},
ex => { MessageBox.Show(ex.Message); },
() => { }
);