blob: 88cfc578a283383a81ce78f38104a67ec9144269 (
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 10 00 00 00 10 08 06 00 00 00 1f f3 ff | .PNG........IHDR................ |
| 0020 | 61 00 00 00 09 70 48 59 73 00 00 0e c4 00 00 0e c4 01 95 2b 0e 1b 00 00 01 76 49 44 41 54 78 5e | a....pHYs..........+.....vIDATx^ |
| 0040 | 95 92 3d 48 c3 60 10 86 af a5 42 52 44 3a a4 50 04 c7 0e 95 0c 2e a2 b3 f8 03 82 a0 14 9c dc da | ..=H.`....BRD:.P................ |
| 0060 | bd 22 0e 0a d5 a1 2a 11 a9 a2 93 0e ba 88 15 ea a2 a2 5b 55 5c d4 c1 0e 85 84 0a 52 51 70 d0 52// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Diagnostics;
using System.Linq;
using Tango.Scripting.Editors.Document;
namespace Tango.Scripting.Editors.Xml
{
/// <summary> Holds event args for event caused by <see cref="AXmlObject"/> </summary>
public class AXmlObjectEventArgs: EventArgs
{
/// <summary> The object that caused the event </summary>
public AXmlObject Object { get; set; }
}
}
|