common/Production/ProductionUiCordonel/UserControls/UcDialog.xaml
2026-04-23 17:50:07 +02:00

14 lines
957 B
XML

<UserControl x:Class="Xylem.Common.Production.ProductionUiCordonel.UserControls.UcDialog"
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"
mc:Ignorable="d"
d:DesignHeight="330" d:DesignWidth="340" Background="LightGreen">
<Grid>
<Label Name="lblHeadLine" HorizontalAlignment="Stretch" VerticalAlignment="Top" Height="40" Margin="2,4,2,4" FontSize="16"/>
<TextBlock Name="tbxMessage" HorizontalAlignment="Stretch" VerticalAlignment="Top" Height="40" Margin="8,44,2,4" TextWrapping="WrapWithOverflow"/>
<StackPanel Name="stkPanel" HorizontalAlignment="Stretch" VerticalAlignment="Top" Margin="0,80,0,0" />
</Grid>
</UserControl>