aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Images/CSharpScriptItem.png
blob: 37e4e172771b0305c61530a323ea6a5d3a4738ed (plain)
ofshex dumpascii
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 c3 00 00 0e c3 01 c7 6f a8 64 00 00 00 a0 49 44 41 54 78 5e a....pHYs..........o.d....IDATx^
0040 ed 91 ad 0e c2 30 14 85 f7 48 13 13 c8 8a 49 04 2f b1 64 8f 81 dd 50 08 02 96 10 e4 32 3d 87 c3 .....0...H....I./.d...P.....2=..
0060 8d 47 98 af a9 e8 9f 2c 3b 4b 2e 21 4d 97 4e 4d 10 6e 72 d2 9a ef 3b 37 6d f2 63 a3 94 4a 8d 31 .G.....,;K.!M.NM.nr...;7m.c..J.1
0080 ed 18 17 cb 1c 2c 0e 5d e5 36 75 f6 c9 f9 71 02 80 3b 9d 61 09 9a 09 de 5d b6 13 08 59 db 37 80 .....,.].6u...q
using 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 MainView.xaml
    /// </summary>
    public partial class MainView : UserControl
    {
        public static MainView Instance { get; private set; }

        public MainView()
        {
            InitializeComponent();
            Instance = this;
        }
    }
}