The Gauge class generates a widget that allows a user to adjust a numeric value. The gauge adjusts its layout according to the Orientation attribute.
Use this property to adjust the progress bar's aspect, by providing an image specification.
<?xml version="1.0" ?>
<Application> <Window Id="win" Title="Gauge : image property" Open="true"> <Group Orientation="vertical" Style="min-width: 100px; min-height: 200px;"> <Gauge Max="100" Value="80" Style="image: lime yellow red" /> <Gauge Orientation="vertical" Max="100" Value="80" Style="image: lime yellow red clockwise" /> </Group> </Window> </Application>