mirror of
https://github.com/greenshot/greenshot
synced 2025-07-15 01:23:47 -07:00
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2116 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
26 lines
No EOL
691 B
XML
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> |