You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ErrorDisplayer.xaml 808 B

123456789101112131415
  1. <Window x:Class="Client.ErrorDisplayer"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Client"
  7. mc:Ignorable="d"
  8. Title="ErrorDisplayer" Height="250" Width="500">
  9. <Grid Margin="0,0,0,0">
  10. <TextBox Name="errorDisplayer" HorizontalAlignment="Left" Height="150
  11. " Margin="140,52,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="300" IsReadOnly="True"/>
  12. <Image Margin="33,95,398,76" Stretch="Fill" Source="/Warning.png" RenderTransformOrigin="0.484,1.248"/>
  13. </Grid>
  14. </Window>