154 lines
8.2 KiB
XML
154 lines
8.2 KiB
XML
<Window x:Class="CordonelAssemblyLine.ShouldBePressureTestedModal"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:Local="clr-namespace:CordonelAssemblyLine"
|
|
AllowsTransparency="True"
|
|
Background="LightGoldenrodYellow"
|
|
Foreground="DimGray"
|
|
Height="300"
|
|
Style="{DynamicResource WindowStyle}"
|
|
Width="500"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None">
|
|
<Window.Resources>
|
|
<Style x:Key="FocusVisual">
|
|
<Setter Property="Control.Template">
|
|
<Setter.Value>
|
|
<ControlTemplate>
|
|
<Rectangle Margin="2"
|
|
SnapsToDevicePixels="true"
|
|
Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"
|
|
StrokeThickness="1"
|
|
StrokeDashArray="1 2"/>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
<SolidColorBrush x:Key="button-bg" Color="DimGray" Opacity="0.8" />
|
|
<SolidColorBrush x:Key="button-bg-hover" Color="DimGray" />
|
|
<Style x:Key="ButtonStyle" TargetType="{x:Type Button}">
|
|
<Setter Property="FocusVisualStyle" Value="{StaticResource FocusVisual}"/>
|
|
<Setter Property="Background" Value="{StaticResource button-bg}" />
|
|
<Setter Property="BorderThickness" Value="0"/>
|
|
<Setter Property="Cursor" Value="Hand"/>
|
|
<Setter Property="Foreground" Value="White"/>
|
|
<Setter Property="FontFamily" Value="Verdana"/>
|
|
<Setter Property="FontSize" Value="14"/>
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
<Setter Property="Padding" Value="30 20"/>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Button}">
|
|
<Border x:Name="border"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Background="{TemplateBinding Background}"
|
|
CornerRadius="3"
|
|
Opacity="{TemplateBinding Opacity}"
|
|
SnapsToDevicePixels="true">
|
|
<ContentPresenter x:Name="contentPresenter"
|
|
Focusable="False"
|
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
Margin="{TemplateBinding Padding}"
|
|
RecognizesAccessKey="True"
|
|
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"
|
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
|
|
</Border>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="true">
|
|
<Setter Property="Background" TargetName="border" Value="{StaticResource button-bg-hover}"/>
|
|
</Trigger>
|
|
<Trigger Property="IsPressed" Value="true">
|
|
<Setter Property="Background" TargetName="border" Value="{StaticResource button-bg-hover}"/>
|
|
</Trigger>
|
|
<Trigger Property="IsEnabled" Value="false">
|
|
<Setter Property="Background" TargetName="border" Value="{StaticResource button-bg}"/>
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
<GeometryGroup x:Key="bi-exclamination">
|
|
<PathGeometry Figures="M6.95.435c.58-.58 1.52-.58 2.1 0l6.515 6.516c.58.58.58 1.519 0 2.098L9.05 15.565c-.58.58-1.519.58-2.098 0L.435 9.05a1.48 1.48 0 0 1 0-2.098zm1.4.7a.495.495 0 0 0-.7 0L1.134 7.65a.495.495 0 0 0 0 .7l6.516 6.516a.495.495 0 0 0 .7 0l6.516-6.516a.495.495 0 0 0 0-.7L8.35 1.134z"/>
|
|
<PathGeometry Figures="M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0z"/>
|
|
</GeometryGroup>
|
|
<Style x:Key="WindowStyle" TargetType="{x:Type Window}">
|
|
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}"/>
|
|
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"/>
|
|
<Setter Property="BorderBrush" Value="DimGray"/>
|
|
<Setter Property="BorderThickness" Value="1"/>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Window}">
|
|
<Border Background="{TemplateBinding Background}"
|
|
BorderThickness="0"
|
|
CornerRadius="3"
|
|
Padding="3">
|
|
<Border Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
CornerRadius="3">
|
|
<Grid>
|
|
<AdornerDecorator>
|
|
<ContentPresenter/>
|
|
</AdornerDecorator>
|
|
<ResizeGrip x:Name="WindowResizeGrip"
|
|
HorizontalAlignment="Right"
|
|
IsTabStop="false"
|
|
Visibility="Collapsed"
|
|
VerticalAlignment="Bottom"/>
|
|
</Grid>
|
|
</Border>
|
|
</Border>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</Window.Resources>
|
|
<Window.DataContext>
|
|
<Local:ShouldBePressureTestedModalVM />
|
|
</Window.DataContext>
|
|
<Grid HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="1" Margin="0 30">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock FontFamily="Verdana"
|
|
FontSize="15"
|
|
FontWeight="Black"
|
|
HorizontalAlignment="Center"
|
|
Text="Dieser Zähler muss zur Druckprüfung!"
|
|
TextWrapping="Wrap"
|
|
TextAlignment="Center"
|
|
Width="300"/>
|
|
<TextBlock FontFamily="Verdana"
|
|
FontSize="13"
|
|
Grid.Row="1"
|
|
HorizontalAlignment="Center"
|
|
Margin="0 10 0 0"
|
|
TextWrapping="Wrap"
|
|
TextAlignment="Center"
|
|
Width="300">
|
|
<Run Text="Dieser Zähler ist teil der" />
|
|
<Run Text="{Binding RuleText}" />
|
|
<Run Text="Stichproben regel." />
|
|
</TextBlock>
|
|
</Grid>
|
|
<Button Click="CloseModal"
|
|
Content="Bitte bestätigen"
|
|
Grid.Row="4"
|
|
Style="{DynamicResource ButtonStyle}"/>
|
|
</Grid>
|
|
</Window>
|