greenshot/GreenshotLanguageEditor/ErrorWindow.xaml
2012-10-02 21:30:53 +00:00

26 lines
No EOL
691 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="GreenshotLanguageEditor.ErrorWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Error"
ResizeMode="CanResizeWithGrip"
Height="345"
Width="610">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition
Width="0*" />
<ColumnDefinition
Width="*" />
</Grid.ColumnDefinitions>
<TextBox
Name="textBox"
Grid.Column="1"
Grid.Row="0"
Margin="8,8,0,0"
TextWrapping="Wrap"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
VerticalScrollBarVisibility="Visible"
/>
</Grid>
</Window>