mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
10 lines
412 B
XML
10 lines
412 B
XML
<Window x:Class="Cosmos.Build.Windows.ViewSourceWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="View Source" Height="500" Width="500" Loaded="Window_Loaded">
|
|
<TextBox
|
|
x:Name="tboxSource"
|
|
HorizontalScrollBarVisibility="Auto"
|
|
VerticalScrollBarVisibility="Auto"
|
|
IsReadOnly="True" />
|
|
</Window>
|