aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Intellisense/CompletionItemPopupControl.cs
blob: 14e5b66816c3c04670ca3d4470d1a371f98e3d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;

namespace Tango.Scripting.IDE.ProjectItems
{
    public class ReferenceAssembliesItem : ProjectItem
    {
        public ReferenceAssembliesItem()
        {
            Name = "References";
        }

        public override BitmapSource Image => GetImage("Images/Reference.png");

        public override FrameworkElement OnGetView()
        {
            return null;
        }

        public override bool CanOpen => false;
    }
}