private static void OnSetSourceTextVisibiltyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            DownloadUIControl borderControl = d as DownloadUIControl;

            borderControl.OnSetSourceTextVisibiltyChanged(e);
        }
        private static void OnSetCancelCommandChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            DownloadUIControl borderControl = d as DownloadUIControl;

            borderControl.OnSetCancelCommandChanged(e);
        }
        private static void OnMessageTextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            DownloadUIControl borderControl = d as DownloadUIControl;

            borderControl.OnMessageTextChanged(e);
        }