17 lines
884 B
XML
17 lines
884 B
XML
<Window x:Class="ModuleManager.ProgressBar"
|
|
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:vlc="clr-namespace:LibVLCSharp.WPF;assembly=LibVLCSharp.WPF"
|
|
mc:Ignorable="d"
|
|
Title="ProgressBar" ResizeMode="NoResize"
|
|
SizeToContent="WidthAndHeight"
|
|
Background="DarkGray"
|
|
Topmost="True">
|
|
<DockPanel Margin="10">
|
|
<Label Name="lab" DockPanel.Dock="Top" Content="Labtext" VerticalAlignment="Center" HorizontalContentAlignment="Center" HorizontalAlignment="Center"></Label>
|
|
<ProgressBar Name="Bar" Background="Red" Height="20" Width="500"></ProgressBar>
|
|
</DockPanel>
|
|
</Window>
|