aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Images/embedded.png
blob: d0b917b44a6d137c84d699dae9d3a48126bab68a (plain)
ofshex dumpascii
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 03 00 00 00 44 a4 8a .PNG........IHDR.............D..
0020 c6 00 00 00 03 73 42 49 54 08 08 08 db e1 4f e0 00 00 00 09 70 48 59 73 00 00 00 df 00 00 00 df .....sBIT.....O.....pHYs........
0040 01 0f ad 61 8e 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 61 ...a.....tEXtSoftware.www.inksca
0060 70 65 2e 6f 72 67 9b ee 3c 1a 00 00 00 7b 50 4c 54 45 ff ff ff ff 49 24 ff 60 20 f4 55 2b f5 5c pe.org..<....{PLTE....I$.`..U+.\
0080 33 ee 5b 2d f1 57 2d f0 59 2e f0 58 2f f0 57 2f f0 59 30 f0 58 2f f0 58 2f f0 58 2f f0 59 2f f0 3.[-.W-.Y..X/.W/.Y0.X/.X/.X/.Y/.
00a0 58 2f f0 58 2f 4f 55 65 56 5c 6b 56 5c 6c 56 5d 6c 61 68 76 64 6b 79 b3 60 50 b5 65 56 c0 7f 73 X/.X/OUeV\kV\lV]lahvdky.`P.eV..s
00c0 c7 5e 45 cb 99 91 cd 9e 97 d6 b3 ae ef 58 2f f0 58 2f f0 5d 35 f0 62 3c f0 75 55 f0 8d 74 f0 92 .^E..........X/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
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.Synchronization.Views
{
    /// <summary>
    /// Interaction logic for MainView.xaml
    /// </summary>
    public partial class MainView : UserControl
    {
        public static MainView Instance;

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

        private void txtLog_TextChanged(object sender, TextChangedEventArgs e)
        {
            Task.Factory.StartNew(() =>
            {
                Thread.Sleep(50);

                this.Dispatcher.Invoke(() =>
                {
                    txtLog.SelectionStart = txtLog.Text.Length;
                    txtLog.ScrollToEnd();
                });
            });
        }
    }
}