mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
13 lines
572 B
XML
13 lines
572 B
XML
<Window x:Class="Cosmos.Build.Builder.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="MainWindow" Height="389" Width="564" Loaded="Window_Loaded">
|
|
<DockPanel>
|
|
<WrapPanel DockPanel.Dock="Top">
|
|
<Button Name="butnCopy" Click="butnCopy_Click">Copy</Button>
|
|
</WrapPanel>
|
|
<ScrollViewer>
|
|
<TextBlock Name="tblkLog" Text="" TextWrapping="Wrap"/>
|
|
</ScrollViewer>
|
|
</DockPanel>
|
|
</Window>
|