Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml
2016-06-09 10:34:36 -04:00

20 lines
874 B
XML

<UserControl x:Class="WPFMachine.Support.ZInfoTXD"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="25" />
<RowDefinition />
</Grid.RowDefinitions>
<StackPanel Orientation="Vertical">
<Button Content="Copy to Clipboard" x:Name="btnCopy" Click="btnCopy_Click" />
</StackPanel>
<ScrollViewer Grid.Row="1">
<TextBlock x:Name="tb" />
</ScrollViewer>
</Grid>
</UserControl>