blob: 0d5e5eaa60573d5686c77e4d898c13ee098302dd (
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 04 00 00 00 69 37 a9 | .PNG........IHDR.............i7. |
| 0020 | 40 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 00 00 3a 98 00 00 17 70 9c ba 51 3c 00 00 00 | ...........u0...`..:....p..Q<... |
| 0060 | 02 62 4b 47 44 00 00 aa 8d 23 32 00 00 00 0using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Tango.Scripting.Editors.Intellisense
{
public class PropertyCompletionItemPopup : CompletionItemPopupControl
{
static PropertyCompletionItemPopup()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(PropertyCompletionItemPopup), new FrameworkPropertyMetadata(typeof(PropertyCompletionItemPopup)));
}
}
}
|