WPF StatusBar控件 这一块也能放一些东西
StatusBar控件一般在窗口的底部。用于显示有关应用程序当前状态的各种信息,如光标位置、字数、任务进度等。
<Window x:Class="WpfApp14.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp14"mc:Ignorable="d"Title="MainWindow" Height="200" Width="300"><Grid><StatusBarItem VerticalAlignment="Bottom"><TextBlock Text="这是状态栏,一般在界面的底部" /></StatusBarItem></Grid> </Window>
效果如图。