Dock StatusBar : StatusBar « Windows Presentation Foundation « C# / C Sharp






Dock StatusBar

Dock StatusBar
    
<Window x:Class="SimpleStyles.TestWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Test Window" Height="300" Width="300"
    Style="{StaticResource {x:Type Window}}"
    ResizeMode="CanResizeWithGrip">
  <DockPanel LastChildFill="False">
    <StatusBar DockPanel.Dock="Bottom">
      <StatusBarItem>
        Ready
      </StatusBarItem>
    </StatusBar>

  </DockPanel>
</Window>

   
    
    
    
  








Related examples in the same category

1.Proportional StatusBarProportional StatusBar
2.Display a Status BarDisplay a Status Bar
3.Items that can be placed in a StatusBarItems that can be placed in a StatusBar
4.Add TextBlock to StatusbarAdd TextBlock to Statusbar
5.Put Image with tooltip onto statusbarPut Image with tooltip onto statusbar
6.Make Group onto StatusbarMake Group onto Statusbar
7.Add Image to Statusbar
8.Create a ProgressBar.Create a ProgressBar.
9.Animation ProgressBar.Animation ProgressBar.