﻿function onSourceDownloadProgressChanged(sender, eventArgs) {
    
    var status = sender.findName("uxStatus");

    if (status)
        status.Text = Math.round(eventArgs.progress * 100).toString();
}
