mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
14 lines
721 B
XML
14 lines
721 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="Cosmos Kit Builder" Height="389" Width="564" Loaded="Window_Loaded" Icon="/Cosmos.Build.Builder;component/Cosmos.ico">
|
|
<DockPanel>
|
|
<WrapPanel DockPanel.Dock="Top">
|
|
<Button Name="butnCopy" Click="butnCopy_Click">Copy</Button>
|
|
</WrapPanel>
|
|
<TextBlock DockPanel.Dock="Top" Name="tblkCurrent" FontSize="16" />
|
|
<ScrollViewer HorizontalScrollBarVisibility="Visible">
|
|
<StackPanel Name="spnlLog" />
|
|
</ScrollViewer>
|
|
</DockPanel>
|
|
</Window>
|