2019-01-22 21:02:49 +01:00
|
|
|
<Window x:Class="Magazyn.Windows.ErrorWindow"
|
|
|
|
|
|
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
|
|
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
|
|
|
TextElement.FontWeight="Regular"
|
|
|
|
TextElement.FontSize="13"
|
|
|
|
TextOptions.TextFormattingMode="Ideal"
|
|
|
|
TextOptions.TextRenderingMode="Auto"
|
|
|
|
Background="{DynamicResource MaterialDesignPaper}"
|
|
|
|
FontFamily="{DynamicResource MaterialDesignFont}"
|
|
|
|
|
|
|
|
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:Magazyn.Windows"
|
|
|
|
mc:Ignorable="d"
|
2019-01-23 22:39:54 +01:00
|
|
|
Title="Błąd" WindowStartupLocation="CenterOwner" Height="205" Width="220" ResizeMode="NoResize">
|
2019-01-22 21:02:49 +01:00
|
|
|
<Grid>
|
|
|
|
<Button x:Name="okButton" Content="Ok" HorizontalAlignment="Right" Margin="0,0,10,10" VerticalAlignment="Bottom" Width="75" Click="okButton_Click"/>
|
|
|
|
<TextBlock x:Name="messageBlock" FontSize="16" Margin="10,10,10,0" TextWrapping="Wrap" Text="messageBlock" VerticalAlignment="Top"/>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|