41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<UserControl
|
|
x:Class="BeWo.View.Controls.TextViewer"
|
|
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:local="clr-namespace:BeWo.View.Controls"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="0">
|
|
<TextBox
|
|
x:Name="txt"
|
|
Height="auto"
|
|
Margin="3"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch"
|
|
HorizontalContentAlignment="Left"
|
|
VerticalContentAlignment="Top"
|
|
Background="#eeeeee"
|
|
BorderThickness="1"
|
|
Foreground="Black"
|
|
IsReadOnly="True"
|
|
VerticalScrollBarVisibility="Auto"
|
|
HorizontalScrollBarVisibility="Auto"/>
|
|
</Grid>
|
|
|
|
<Button
|
|
Grid.Row="1"
|
|
Margin="3"
|
|
Click="Button_Click"
|
|
Content="Inhalt in Zwischenablage kopieren" />
|
|
</Grid>
|
|
</UserControl>
|