0

I have an application which takes time to load so i would like to display a progress bar in a small window such that it should not have any buttons like minimize,maximize and close button the progress bar should be standalone. Is there any way to display progress bar without any buttons.

Prabhavith
  • 458
  • 1
  • 4
  • 15
  • To hide the close button see: http://stackoverflow.com/questions/743906/how-to-hide-close-button-in-wpf-window – raznagul Mar 23 '12 at 10:34

2 Answers2

1

Yes, just set the WindowStyle to None, and possibly ResizeMode to NoResize.

H.B.
  • 166,899
  • 29
  • 327
  • 400
1

place the progress bar control in the window control and in xaml set these properties with your window tag

<Window x:Class="XXX"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Height="20" Width="50" WindowStartupLocation="CenterScreen" 
        WindowStyle="None"
        ResizeMode="NoResize"
        ShowInTaskbar="False" >
Habib
  • 219,104
  • 29
  • 407
  • 436