如何控制BeginInvoke的状态?
我有一个如下的功能。
private void AddPrice(String value)
{
Delegate del=new Action<String>(AddToCollection);
this.Dispatcher.BeginInvoke(del,DipatcherPriority.Background,value);
}
在 AddToCollection 方法中,该值将被添加到 Observable Collection 中。
“AddPrice”函数将根据用户输入被调用(例如100次、200次、300次)。
Observable集合的最大数量是150。如果达到150,我必须向用户弹出消息框,并且需要取消添加值。但是,如果该函数被调用 200 次,则消息框将显示 BeginInvoke 的 50 次 bse。我该如何修改这个?谢谢。
I have a function as below.
private void AddPrice(String value)
{
Delegate del=new Action<String>(AddToCollection);
this.Dispatcher.BeginInvoke(del,DipatcherPriority.Background,value);
}
In AddToCollection method, the value will be added to Observable Collection.
"AddPrice" function will be called based on user input(Eg. 100 times, 200 times, 300 times).
the maximum count of Observable collection is 150. If it reaches 150, I have to pop up Messagebox to user and need to cancle adding values. But, If the function is called 200 times, the messagebox is showing 50 times bse of BeginInvoke. How can I modify this? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有两个选择:
因此,您可以在接收方或发送方停止此过程。
You have two options:
So, you can stop this process on receiver or on the sender side.