blob: 88cfc578a283383a81ce78f38104a67ec9144269 (
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 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 c4 00 00 0e c4 01 95 2b 0e 1b 00 00 01 76 49 44 41 54 78 5e | a....pHYs..........+.....vIDATx^ |
| 0040 | 95 92 3d 48 c3 60 10 86 af a5 42 52 44 3a a4 50 04 c7 0e 95 0c 2e a2 b3 f8 03 82 a0 14 9c dc da | ..=H.`....BRD:.P................ |
| 0060 | bd 22 0e 0a d5 a1 2a 11 a9 a2 93 0e ba 88 15 ea a2 a2 5b 55 5c d4 c1 0e 85 84 0a 52 51 70 d0 52 | ."....*...........[U\......RQp.R |
| 0080 | 85 68 21 0d 3a d4 bb 90 68 48 5a d3 be f0 72 e1 c2 fb 7c 3f f7 41 a3 52 14 85 a9 d5 77 37 18 9e | .h!.:...hHZ...r...|?.A.R....w7.. |
| 00a0 | c1 72 8b d5 df 34 80 c2 0f c5 b2 b0 95 b9 e7 b1 71 61 85 b8 1d c2 91 0f e5 4b 18 5a 3a 87 a9 dd | .r...4..........qa.......K.Z:... |
| 00c0 | 2c 24 4f f2 7f 10 87 20 8b f6 a1 83 e8 42 22 9d ad 42 78 5b 33 7d 63 4f 34 20 2e 53 28 84 25 8e | ,$O..........B"..Bx[3}cO4..S(.%. |
| 00e0 | 1e 44 73 16 26 ad 0e f3 07 39 20 25 c6 bb 60 7a a4 53 c2 76 9f 4b 0f 87using 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 OrganizationSelectionView.xaml
/// </summary>
public partial class OrganizationSelectionView : UserControl
{
public OrganizationSelectionView()
{
InitializeComponent();
}
}
}
|