Intersoft ClientUI 8 > ClientUI Controls > Control Library > UI Controls Overview > ImageLoader > How-to: Customize Progress Bar Text Format in ImageLoader |
This example shows how to customize Progress Bar text format in ImageLoader.
The following code shows ProgressText property of ImageLoader is set to Loading {0} %, where {0} is the loading progress value and ProgressTextVisibility is set to Visible.
XAML |
Copy Code
|
---|---|
<Intersoft:ImageLoader Height="200" Name="imageLoader1" Width="200" ProgressText="Loading {0} %" ProgressTextVisibility="Visible" ImageSource="/ClientUIApplication1;component/Images/Application_and_Software_1.jpg"> </Intersoft:ImageLoader> |