Items that can be placed in a StatusBar : StatusBar « Windows Presentation Foundation « C# / CSharp Tutorial






<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="StatusBarSimple.Window1"
    Title ="StatusBar">
  <Window.Resources>
    <Style x:Key="StatusBarSeparatorStyle" TargetType="Separator">
      <Setter Property="Background" Value="LightBlue" />
      <Setter Property="Control.Width" Value="1"/>
      <Setter Property="Control.Height" Value="20"/>
    </Style>    
  </Window.Resources>
        <StatusBar Name="sbar" Grid.Column="0" Grid.Row="2" Grid.ColumnSpan="2" 
                   VerticalAlignment="Bottom" Background="Beige" > 
             <StatusBarItem>
                <Button Content="click" Click="MakeProgressBar"/>
             </StatusBarItem>
             <StatusBarItem>
               <Separator Style="{StaticResource StatusBarSeparatorStyle}"/>
             </StatusBarItem>
        </StatusBar>
</Window>
//File:Window.xaml.cs
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace StatusBarSimple
{
    public partial class Window1 : Window
    {
        private void MakeProgressBar(object sender, RoutedEventArgs e)
        {
            sbar.Items.Clear();
            TextBlock txtb = new TextBlock();
            txtb.Text = "Progress of download.";
            sbar.Items.Add(txtb);
            ProgressBar progressbar = new ProgressBar();
            progressbar.Width = 100;
            progressbar.Height = 20;
            Duration duration = new Duration(TimeSpan.FromSeconds(5));
            DoubleAnimation doubleanimation = new DoubleAnimation(100.0, duration);
            progressbar.BeginAnimation(ProgressBar.ValueProperty,doubleanimation);
            ToolTip ttprogbar = new ToolTip();
            ttprogbar.Content = "Shows the progress of a download.";
            progressbar.ToolTip = (ttprogbar);
            sbar.Items.Add(progressbar);
        }
    }
}
WPF Items That Can Be Placed In A Status Bar








24.41.StatusBar
24.41.1.Dock StatusBarDock StatusBar
24.41.2.Proportional StatusBarProportional StatusBar
24.41.3.Display a Status BarDisplay a Status Bar
24.41.4.Items that can be placed in a StatusBarItems that can be placed in a StatusBar
24.41.5.Add TextBlock to StatusbarAdd TextBlock to Statusbar
24.41.6.Put Image with tooltip onto statusbarPut Image with tooltip onto statusbar
24.41.7.Make Group onto StatusbarMake Group onto Statusbar
24.41.8.Add Image to StatusbarAdd Image to Statusbar
24.41.9.Create a ProgressBar.Create a ProgressBar.
24.41.10.Animation ProgressBar.Animation ProgressBar.
24.41.11.Dock status bar at bottom of panel
24.41.12.Create StatusBar and Add String as the StatusBarItem