PEPTool/AV-ToolV3/XMessageBox.xaml
2025-10-08 10:11:18 +02:00

16 lines
1006 B
XML

<Window x:Class="PEP_Tool.XMessageBox"
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:PEP_Tool"
mc:Ignorable="d"
Title="XMessageBox" Height="195" Width="390" ResizeMode="NoResize" ShowInTaskbar="False" WindowStartupLocation="CenterScreen" Closed="Window_Closed">
<Grid>
<Button x:Name="btnBox" Content="OK" Margin="0,0,10,10" HorizontalAlignment="Right" Width="94" Height="29" VerticalAlignment="Bottom"/>
<TextBlock x:Name="Message" Margin="90,10,10,35" TextWrapping="Wrap" Text="TextBlock" TextAlignment="Left" VerticalAlignment="Center"/>
<Image x:Name="Image" HorizontalAlignment="Left" Height="44" Margin="26,34,0,88" VerticalAlignment="Center" Width="44"/>
</Grid>
</Window>