blob: 6a211693d55b38b2913cbb44c3004d441f4c57c3 (
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 06 00 00 00 aa 69 71 | .PNG........IHDR...@...@......iq |
| 0020 | de 00 00 00 04 73 42 49 54 08 08 08 08 7c 08 64 88 00 00 00 09 70 48 59 73 00 00 01 bb 00 00 01 | .....sBIT....|.d.....pHYs....... |
| 0040 | bb 01 3a ec e3 e2 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 65 00 77 77 77 2e 69 6e 6b 73 63 | ..:.......tEXtSoftware.www.inksc |
| 0060 | 61 70 65 2e 6f 72 67 9b ee 3c 1a 00 00 05 ff 49 44 41 54 78 da ed 5b 7d 4c 1b 65 1c 86 99 21 fb | ape.org..<.....IDATx..[}L.e...!. |
| 0080 | 08 13 1c 31 ba 39 36 b7 c4 18 13 8d 7f 2c 4a 34 26 c6 cd 84 18 a3 26 a2 19 5b 48 dc 16 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.MachineStudio.Logging.Views
{
/// <summary>
/// Interaction logic for EventDetailsView.xaml
/// </summary>
public partial class EventDetailsView : UserControl
{
public EventDetailsView()
{
InitializeComponent();
}
}
}
|