blob: e49f62923e5d45048e7f2f2cab76d1b124777846 (
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 80 00 00 00 80 08 06 00 00 00 c3 3e 61 | .PNG........IHDR..............>a |
| 0020 | cb 00 00 00 01 73 52 47 42 00 ae ce 1c e9 00 00 00 04 67 41 4d 41 00 00 b1 8f 0b fc 61 05 00 00 | .....sRGB.........gAMA......a... |
| 0040 | 00 09 70 48 59 73 00 00 03 75 00 00 03 75 01 d0 6c a3 a1 00 00 00 19 74 45 58 74 53 6f 66 74 77 | ..pHYs...u...u..l......tEXtSoftw |
| 0060 | 61 72 65 00 70 61 69 6e 74 2e 6e 65 74 20 34 2e 30 2e 31 37 33 6e 9f 63 00 00 18 d0 49 44 41 54 | are.paint.net.4.0.173n.c....IDAT |
| 0080 | 78 5e e5 9d 09 90 5c 55 b9 c7 using 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 SnippetCompletionItem : CompletionItem
{
private static BitmapSource image = GetImage("snippet.png");
public override string Text => Name;
public override CompletionItemPopupControl PopupControl => new FieldCompletionItemPopup();
public override BitmapSource Image => image;
public String Name { get; set; }
public String Code { get; set; }
protected override string GetCode()
{
return Code;
}
}
}
|