mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
20 lines
874 B
XML
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>
|