aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TEMP/Tango.Scripting/TestApp/MainWindow.xaml
blob: 56fe9da3cdcc48b1e357686855a996384f54925f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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"
        xmlns:ide="clr-namespace:Tango.Scripting.IDE;assembly=Tango.Scripting.IDE"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <ide:ScriptIDEView/>
    </Grid>
</Window>
------------------------ using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Settings; using Tango.BL.Entities; namespace Tango.BL { public partial class ObservablesContext : DbContext { @foreach (var prop in Model.Properties) { <div> /// <summary> /// Gets or sets the @(prop.Name). /// </summary> public @(prop.Type) @(prop.Name) { get; set; } </div> } } }