aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TEMP/Tango.Scripting/TestApp/MainWindow.xaml
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-02-11 13:45:22 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-02-11 13:45:22 +0200
commit86af0fda638636f113f34d42ad3efb091f8de16e (patch)
tree5a1cbb90739ef7fc902a1c00be232d65e9e967e2 /Software/Visual_Studio/TEMP/Tango.Scripting/TestApp/MainWindow.xaml
parentc027cee20aabc6edfcc80b6f336911ce1c5eb1fb (diff)
downloadTango-86af0fda638636f113f34d42ad3efb091f8de16e.tar.gz
Tango-86af0fda638636f113f34d42ad3efb091f8de16e.zip
Added temp scripting project + advanced installer license number.
Diffstat (limited to 'Software/Visual_Studio/TEMP/Tango.Scripting/TestApp/MainWindow.xaml')
-rw-r--r--Software/Visual_Studio/TEMP/Tango.Scripting/TestApp/MainWindow.xaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/Software/Visual_Studio/TEMP/Tango.Scripting/TestApp/MainWindow.xaml b/Software/Visual_Studio/TEMP/Tango.Scripting/TestApp/MainWindow.xaml
new file mode 100644
index 000000000..e9cc002ba
--- /dev/null
+++ b/Software/Visual_Studio/TEMP/Tango.Scripting/TestApp/MainWindow.xaml
@@ -0,0 +1,26 @@
+<Window x:Class="TestApp.MainWindow"
+ 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:editors="clr-namespace:Tango.Scripting.Editors;assembly=Tango.Scripting.Editors"
+ xmlns:local="clr-namespace:TestApp"
+ mc:Ignorable="d"
+ Title="MainWindow" Height="450" Width="800">
+ <Grid>
+ <Grid.RowDefinitions>
+ <RowDefinition Height="42"/>
+ <RowDefinition Height="377*"/>
+ </Grid.RowDefinitions>
+
+ <StackPanel Orientation="Horizontal">
+ <Button Padding="20 10" Click="Button_Click">START</Button>
+ <Button Padding="20 10" Click="Button_Click_1">STOP</Button>
+ <CheckBox Margin="10 0 0 0" VerticalAlignment="Center" IsChecked="{Binding ElementName=editor,Path=EnableFolding}">Enable Folding</CheckBox>
+ </StackPanel>
+
+ <editors:ScriptEditor Grid.Row="1" x:Name="editor" Margin="0 5 0 0">
+
+ </editors:ScriptEditor>
+ </Grid>
+</Window>