Tag: Development

Community

WPF: Using Images in a ProgressBar

(Ged Mead) I was looking for a way of using a ProgressBar to give a kind of a ‘closing down’ message to the user . Although I played around with lots of ideas, I eventually settled on one where I use an image of a person at a window and animate the ProgressBar to give the impression of a blind […]

Community

StackPanel in WPF

(Mahesh Chand) StackPanel is used to arrange child elements into a single line that can be oriented horizontally or vertically. The StackPanel element in XAML represents a StackPanel. The following code snippet creates a StackPanel at design-time using XAML.

Community

Border in WPF

(Mahesh Chand) Elements in WPF do not have a border property. To place a border around an element, WPF provides the Border element. Similar to other WPF elements, the Border has Width, Height, Background, and HorizontalAlignment and VerticalAlignment properties.