16 lines
1.0 KiB
XML
16 lines
1.0 KiB
XML
<UserControl x:Class="Ui.ProductionControls.ctlPictureProgress"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:Ui.ProductionControls"
|
|
mc:Ignorable="d" d:DesignWidth="54" Height="80">
|
|
<Grid Background="DarkGray" >
|
|
|
|
<Grid Background="{Binding Color, UpdateSourceTrigger=PropertyChanged}" Margin="5,21,6,17" >
|
|
<Image Width="51" Source="{Binding ImageSource, UpdateSourceTrigger=PropertyChanged}" Opacity="0.7" VerticalAlignment="Top" />
|
|
<Label ToolTip="{Binding Text, UpdateSourceTrigger=PropertyChanged}" Opacity="0.7" Content="{Binding Headline, UpdateSourceTrigger=PropertyChanged}" VerticalContentAlignment="Top" VerticalAlignment="Bottom" />
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl>
|