This repository was archived by the owner on Nov 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorMessage.xaml
More file actions
27 lines (27 loc) · 1.54 KB
/
ErrorMessage.xaml
File metadata and controls
27 lines (27 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Window x:Class="Calculator.ErrorMessage"
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:Calculator"
mc:Ignorable="d"
Title="ErrorMessage" Height="117.32" Width="320.632" Background="#FF043104" Foreground="{x:Null}" WindowStyle="None" MouseLeftButtonDown="Window_MouseButtonDown" AllowsTransparency="False" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
<Grid>
<Label x:Name="MessageLabel" Content="" HorizontalAlignment="Left" Margin="10,24,0,0" VerticalAlignment="Top" Background="{x:Null}" Foreground="#FF12FF14" Width="301" Height="50"/>
<Button Click="Yes_Click"
Margin="251,79,9.8,9.6"
BorderBrush="#FF12FF14"
Foreground="#FF12FF14"
Content="Ок"
FontFamily="Lucida Sans"
FontSize="10"
Background="#FF043104">
<Button.Resources>
<Style TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="5"/>
</Style>
</Button.Resources>
</Button>
<Label x:Name="TypeMessage" Content="" HorizontalAlignment="Left" VerticalAlignment="Top" Background="{x:Null}" Foreground="#FF1D8520" FontFamily="Digital-7 Mono" FontSize="10" Width="125"/>
</Grid>
</Window>