blob: 7fc5fbfe1043c651f285d3ffd5ce138b529edc63 (
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 20 00 00 00 20 08 06 00 00 00 73 7a 7a | .PNG........IHDR.............szz |
| 0020 | f4 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 00 dd 00 00 00 | .....sBIT....|.d.....pHYs....... |
| 0040 | dd 01 70 53 a2 07 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 | ..pS......tEXtSoftware.www.inksc |
| 0060 | 61 70 65 2e 6f 72 67 9b ee 3c 1a 00 00 05 05 49 44 41 54 58 85 c5 97 5d 6c 14 55 14 c7 7f 77 66 | ape.org..<.....IDATX...]l.U...wf |
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.RML.Views
{
/// <summary>
/// Interaction logic for CalibrationDataView.xaml
/// </summary>
public partial class CalibrationDataView : UserControl
{
public CalibrationDataView()
{
InitializeComponent();
}
}
}
|