blob: d0f85b83f4f2755990ae064481aa17904aff6795 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 40 00 00 00 40 08 03 00 00 00 9d b7 81 | .PNG........IHDR...@...@........ |
| 0020 | ec 00 00 00 04 67 41 4d 41 00 00 b1 8f 0b fc 61 05 00 00 00 20 63 48 52 4d 00 00 7a 26 00 00 80 | .....gAMA......a.....cHRM..z&... |
| 0040 | 84 00 00 fa 00 00 00 80 e8 00 00 75 30 00 00 ea 60 00using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media.Imaging;
namespace Tango.Scripting.Editors.Intellisense
{
public class PropertyCompletionItem : CompletionItem
{
private static BitmapSource image = GetImage("property.png");
public override string Text => Name;
public override CompletionItemPopupControl PopupControl => new PropertyCompletionItemPopup();
public override BitmapSource Image => image;
public String Name { get; set; }
public String Class { get; set; }
public String Type { get; set; }
}
}
|