-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindow2.xaml
24 lines (21 loc) · 1.04 KB
/
Window2.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Window x:Class="OpenStudioIDE.Window2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:OpenStudioIDE"
mc:Ignorable="d"
Title="Window2" Height="450" Width="800" Background="#FF87C5FF">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Menu Background="#FF87C5FF" Margin="0,254,0,160">
<MenuItem Header="_File">
<MenuItem Header="_Exit" Click="MenuItem_Click"/>
</MenuItem>
</Menu>
<TextBox Name="OutputTextBox" VerticalScrollBarVisibility="Auto" IsReadOnly="True" Margin="10,10,10,210"/>
<TextBox Name="InputTextBox" KeyUp="InputTextBox_KeyUp" Margin="10,304,10,10"/>
</Grid>
</Window>