Getting Started with WPF CloudUpload
This tutorial will walk you through the creation of a sample application that contains RadCloudUpload.
Adding Telerik Assemblies Using NuGet
To use RadCloudUpload when working with NuGet packages, install the Telerik.Windows.Cloud.Controls.for.Wpf.Xaml
package. The package name may vary slightly based on the Telerik dlls set - Xaml or NoXaml
Read more about NuGet installation in the Installing UI for WPF from NuGet Package article.
With the 2025 Q1 release, the Telerik UI for WPF has a new licensing mechanism. You can learn more about it here.
Adding Assembly References Manually
If you are not using NuGet packages, you can add a reference to the following assemblies:
- Telerik.Licensing.Runtime
- Telerik.Windows.Controls
- Telerik.Windows.Cloud
- Telerik.Windows.Cloud.Controls
You can find the required assemblies for each control from the suite in the Controls Dependencies help article.
Defining the UI
The following example shows how to define a RadCloudUpload control and a RadCloudUploadList to show the selected files prepared for upload.
Example 1: Defining RadCloudUpload and RadCloudUploadList
The cloud upload control itself provides only a UI and an interface to execute the upload task. However, the upload process should be implemented with additional custom code. The next section shows how to set up this.
Creating the Provider
RadCloudUpload uses a provider interface to upload files to the service of your choice. To create the provider you will need to define a class that implements the ICloudUploadProvider interface. The interface exposes a single method - UploadFileAsync, which returns a Task<object> object.
This secion will show you how to create a dummy provider that stores the files in a storage in memory.
Example 2: Creating a dummy storage and file classes
Example 3: Implementing a dummy ICloudUploadProvider that uploads files to the storage
Example 4: Setting the provider
The control doesn't have any built-in providers, but you can see how to implement one that connects to the Azure and Amazon services in the RadCloudUpload SDK examples.
Telerik UI for WPF Learning Resources
- Telerik UI for WPF CloudUpload Component
- Getting Started with Telerik UI for WPF Components
- Telerik UI for WPF Installation
- Telerik UI for WPF and WinForms Integration
- Telerik UI for WPF Visual Studio Templates
- Setting a Theme with Telerik UI for WPF
- Telerik UI for WPF Virtual Classroom (Training Courses for Registered Users)
- Telerik UI for WPF License Agreement