blob: 80e3d39de9d1dfc64c28a41886c711c2a11161c8 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 20 eb 02 20 dd e4 03 00 51 0d 04 00 51 0d 04 00 51 0d 04 00 51 0d 04 00 51 0d 04 00 51 0d 04 00 | ........Q...Q...Q...Q...Q...Q... |
| 0020 | 51 0d 04 00 51 0d 04 00 51 0d 04 00 51 0d 04 00 51 0d 04 00 51 0d 04 00 31 08 04 00 00 00 00 00 | Q...Q...Q...Q...Q...Q...1....... |
| 0040 | 0e b5 01 91 00 90 00 98 02 68 00 98 01 99 80 68 90 47 0e bd 0e b5 01 91 00 90 01 98 28 b1 00 98 | .........h.....h.G..........(... |
| 0060 | 42 68 00 98 01 99 80 68 90 47 0e bd ad f1 08 0d 00 90 00 98 10 28 01 d2 01 20 0f e0 00 98 c0 0a | Bh.....h.G...........(.......... |
| 0080 | 01 d1 02 20 0a e0 00 98 80 0c 01 d1 03 20 05 e0 00 98 40 0e 01 d1 04 20 00 e0 05 20 02 b0 70 47 | ..................@...........pG |
| 00a0 | ad f1 08 0d 00 90 00 98 80 28 01 d2 01 20 0f e0 00 98 80 0b 01 d1 02 20 0a e0 00 98 40 0d 01 d1 | .........(..................@... |
| 00c0 | 03 20 05 e0 00 98 00 0f 01 d1 04 20 00 e0 05 20 02 b0 70 47 ad f1 08 0d 00 90 00 98 00 28 01 d5 | ..................pG.........(.. |
| 00e0 | 0a 20 17 e0 00 98 80 28 01 da 01 20 12 e0 00 98 b0 f5 80 4f 01 da 02 20 0c e0 00 98 b0 f5 00 1f | .......(...........O............ |
| 0100 | 01 da 03 20 06 e0 00 98 b0 f1 80 5f 01 da 04 20 00 e0 05 20 02 b0 70 47 ad f1 08 0d 00 90 00 98 | ..........._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.UsersAndRoles.Views
{
/// <summary>
/// Interaction logic for MainView.xaml
/// </summary>
public partial class MainView : UserControl
{
public static MainView Instance { get; set; }
public MainView()
{
InitializeComponent();
Instance = this;
}
}
}
|