Last-Modified: Sun, 19 Jul 2026 11:34:34 GMT Expires: Wed, 16 Jul 2036 11:34:34 GMT UI.cs « Automation « Tango.MachineStudio.Common « MachineStudio « Visual_Studio « Software - Tango - Twine softwares
aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Automation/UI.cs
blob: 2c200e10f350b2995cf656554a29fc3edf318b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;

namespace Tango.Scripting.IDE
{
    public interface IProjectItem : ISolutionItem
    {
        ObservableCollection<IProjectItem> Items { get; set; }

        FrameworkElement View { get; }
    }
}