﻿function onSourceDownloadProgressChanged(sender, eventArgs) {
    if (sender.findname("loadingStatus") != null) {
        sender.findName("loadingStatus").Text = (Math.round(eventArgs.progress * 1000)) / 10 + " ";
    }
}