使用适当的值更新ProgressBar

时间:2012-02-26 02:15:34

标签: c# progress-bar backgroundworker

数学不强,所以这是我的问题:

我正在使用进度条显示在后台执行的工作进度:

我的代码片段:

            int i = 0;
            int totalFriends = 0;

            foreach (dynamic friend in facebookFriends)
            {
                totalFriends++;
            }

            foreach (dynamic friend in facebookFriends)
            {
                i++;

                var friend = new FacebookFriend
                {
                    FbId = friend["uid"].ToString()
                };

                AccountFacebookFriendRepository.SaveOrUpdate(accountFriend);
            }

现在应用程序做的远不止这些,在这里我只执行一小部分工作: 因此,例如在我到达此部分之前,进度条的值为7,并且在执行工作后它必须达到20并且我想在使用7到20的适当值进行工作时更新它:

我对此的看法如下:

var intiProgressbarValue = 7;
var finalProgressbarvalue = 20;

foreach (dynamic friend in facebookFriends)
{
    i++;
    var friend = new FacebookFriend
                     {
                         FbId = friend["uid"].ToString()
                     };
    AccountFacebookFriendRepository.SaveOrUpdate(accountFriend);
    var calculatedValue = CalculatedValue(initProgressbarValue, finalProgressBarValue,totalFriends, i);
    UpdateProgressBar( calculatedValue);
}
//note that totalFriends can be any number lets say from 0 to 5000
private int CalculatedValue(int initVal, int finalVal, int totalFriends, int currentFriend)
{
    int progressBarVal = 0;
    //** 
       Perform logic so it will return a progress value that is bigger that 7 and smaller that 20 depending on the number of friends and currently updated friend
    **//
    progressBarVal  = 8;//this would be the result of calculation, a value from 8 to 20
    return progressBarVal;
}

非常感谢任何帮助:

2 个答案:

答案 0 :(得分:3)

试试这个:

private int CalculatedValue(int initVal, int finalVal, int totalFriends, int currentFriend)
{
    initVal++;
    var diff = finalVal - initVal; // 20-8 = 12
    return (diff*(currentFriend+1))/totalFriends + initVal;
}

这假定currentFriend从0更改为totalFriends-1(包括0)。例如,如果currentFriend = 99totalFriends = 300,此函数返回的答案是12,三分之一到8..20(包括)的范围。

答案 1 :(得分:3)

您可以使用公式

progressBarVal = initVal + (finalVal - initVal) * (currentFriend/totalFriends);

要检查数学运算,请在progressBarVal为0时计算currentFriend

initVal + (finalVal - initVal) * 0 = initVal

currentFriendtotalFriends时:

initVal + (finalVal - initVal) * 1 = finalVal