Copied code from laptop for copying
This commit is contained in:
parent
35fc82c200
commit
04d5618e62
1 changed files with 17 additions and 1 deletions
|
@ -10,11 +10,27 @@ using System.Windows.Forms;
|
||||||
|
|
||||||
namespace Saviour_Backup_System
|
namespace Saviour_Backup_System
|
||||||
{
|
{
|
||||||
public partial class transferWindow : Form
|
public partial class transferWindow : Form, CopyFiles.ICopyFilesDiag
|
||||||
{
|
{
|
||||||
|
public System.ComponentModel.ISynchronizeInvoke SyncronizationObject { get; set; }
|
||||||
|
|
||||||
public transferWindow()
|
public transferWindow()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
public void update(Int32 totalFiles, Int32 copiedFiles, Int64 totalBytes, Int64 copiedBytes, string currentFilename)
|
||||||
|
{
|
||||||
|
totalFilesProgress.Maximum = totalFiles;
|
||||||
|
totalFilesProgress.Value = copiedFiles;
|
||||||
|
currentFileProgress.Maximum = 100; //so its a percentage, might make it more accurate.
|
||||||
|
|
||||||
|
if (totalBytes != 0) {
|
||||||
|
currentFileProgress.Value = Convert.ToInt32((100f / (totalBytes / 1024f)) * (copiedBytes / 1024f));
|
||||||
|
}
|
||||||
|
totalFilesProgress.Text = "Copying File " + copiedFiles + " of " + totalFiles + ".";
|
||||||
|
currentFile.Text = currentFilename;
|
||||||
|
}
|
||||||
|
|
||||||
|
public event CopyFiles.CopyFiles.DEL_cancelCopy EN_cancelCopy;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue