Intersoft ClientUI 8 > ClientUI Controls > Control Library > UI Controls Overview > ImageLoader > How-to: Customize Progress Bar Appearance in ImageLoader |
This example shows how to customize Progress Bar appearance in ImageLoader.
The following code shows the ProgressBarBrush is set to #FF0C64DF
XAML |
Copy Code
|
---|---|
<Intersoft:ImageLoader Height="200" Name="imageLoader1" Width="200" ImageSource="/ClientUIApplication1;component/Images/Application_and_Software_1.jpg"> <Intersoft:ImageLoader.LoaderStyle> <Style TargetType="Intersoft:UXProgressBar"> <Setter Property="ProgressBarBrush" Value="#FF0C64DF"></Setter> </Style> </Intersoft:ImageLoader.LoaderStyle> </Intersoft:ImageLoader> |