由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - 问题请教:关于progress updates
相关主题
真难搞:CLR stack overflowmemory usage
asp.net webhosting恭喜away担任BF
logic test - 有空做做About mono
c#, c++光是数值运算的话,速度有多大区别? (转载)问一个初级问题
大家把一个solution分成几个部分吗,web app, business logic layer,xxx layer...any good .net profiler?
架构问题,我们这样的系统用什么好?[转载] .Net Question
Asp&C# Re: [转载] 最近要用VC#.net编成,请教一下VB.Net in DeskTop development 的面试会问什么问题
我的第一个小C#程序How to change web method's name?
相关话题的讨论汇总
话题: progress话题: ui话题: method话题: updates话题: codes
进入DotNet版参与讨论
1 (共1页)
k****n
发帖数: 52
1
刚学习写GUI程序,一直有个问题困惑:我定义了一个class,其中有一个method运算量
很大,要算挺长时间。要在UI中调用这个method,并把运算结果显示出来。我是用
backgroungworker另开一个thread做这个运算,UI的thread画UI。
我的问题是如何能在Form中,更新这个method运算的progress呢?不知道如何把
progress updates的codes插到method中去。有什么方法可以把progress monitoring
codes封装在class中吗?多谢了先!
b****u
发帖数: 1027
2
method 里头到了一定的 PROGRESS 就叫 GUI Thread 更新 UI 的 PROGRESSBAR 啊
k****n
发帖数: 52
3
Thanks. But the class itself is encapsulated, only contains codes for
business calculations, not UI codes at all, since I do not think it is good
to mess logics and presentation together.

【在 b****u 的大作中提到】
: method 里头到了一定的 PROGRESS 就叫 GUI Thread 更新 UI 的 PROGRESSBAR 啊
b****u
发帖数: 1027
4
then use a dummy progress bar, some visual indicator keeps spinning or
progressing, until the method completes.
k****n
发帖数: 52
5
Thanks again. I will do so.

【在 b****u 的大作中提到】
: then use a dummy progress bar, some visual indicator keeps spinning or
: progressing, until the method completes.

f*****e
发帖数: 5177
6
use event

good

【在 k****n 的大作中提到】
: Thanks. But the class itself is encapsulated, only contains codes for
: business calculations, not UI codes at all, since I do not think it is good
: to mess logics and presentation together.

1 (共1页)
进入DotNet版参与讨论
相关主题
How to change web method's name?大家把一个solution分成几个部分吗,web app, business logic layer,xxx layer...
Urgent Help.架构问题,我们这样的系统用什么好?
Can two web services consume each other?Asp&C# Re: [转载] 最近要用VC#.net编成,请教一下
两本中国人写的关于TEST AUTOMATION的书我的第一个小C#程序
真难搞:CLR stack overflowmemory usage
asp.net webhosting恭喜away担任BF
logic test - 有空做做About mono
c#, c++光是数值运算的话,速度有多大区别? (转载)问一个初级问题
相关话题的讨论汇总
话题: progress话题: ui话题: method话题: updates话题: codes