FrmMain.Designer.cs 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. 
  2. namespace AipGateway.Viewer
  3. {
  4. partial class FrmMain
  5. {
  6. /// <summary>
  7. /// 필수 디자이너 변수입니다.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 사용 중인 모든 리소스를 정리합니다.
  12. /// </summary>
  13. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form 디자이너에서 생성한 코드
  23. /// <summary>
  24. /// 디자이너 지원에 필요한 메서드입니다.
  25. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
  30. this.CboAuthLoginType = new System.Windows.Forms.ComboBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.TxtTenantId = new System.Windows.Forms.TextBox();
  35. this.TxtClientId = new System.Windows.Forms.TextBox();
  36. this.TxtAppName = new System.Windows.Forms.TextBox();
  37. this.TxtAppVer = new System.Windows.Forms.TextBox();
  38. this.label5 = new System.Windows.Forms.Label();
  39. this.TxtDomain = new System.Windows.Forms.TextBox();
  40. this.label6 = new System.Windows.Forms.Label();
  41. this.TxtEMail = new System.Windows.Forms.TextBox();
  42. this.label7 = new System.Windows.Forms.Label();
  43. this.TxtMipData = new System.Windows.Forms.TextBox();
  44. this.label8 = new System.Windows.Forms.Label();
  45. this.TxtSecretValue = new System.Windows.Forms.TextBox();
  46. this.label9 = new System.Windows.Forms.Label();
  47. this.TxtCertThumbPrint = new System.Windows.Forms.TextBox();
  48. this.label10 = new System.Windows.Forms.Label();
  49. this.BtnInitialize = new System.Windows.Forms.Button();
  50. this.BtnSingOut = new System.Windows.Forms.Button();
  51. this.label4 = new System.Windows.Forms.Label();
  52. this.TxtInputFile = new System.Windows.Forms.TextBox();
  53. this.BtnFileSelect = new System.Windows.Forms.Button();
  54. this.TxtActualFile = new System.Windows.Forms.TextBox();
  55. this.label11 = new System.Windows.Forms.Label();
  56. this.TxtLog = new System.Windows.Forms.RichTextBox();
  57. this.BtnLogClear = new System.Windows.Forms.Button();
  58. this.label12 = new System.Windows.Forms.Label();
  59. this.CboFileLabel = new System.Windows.Forms.ComboBox();
  60. this.CboProtection = new System.Windows.Forms.ComboBox();
  61. this.label13 = new System.Windows.Forms.Label();
  62. this.CboPolicyLabel = new System.Windows.Forms.ComboBox();
  63. this.label14 = new System.Windows.Forms.Label();
  64. this.BtnGetInfo = new System.Windows.Forms.Button();
  65. this.SuspendLayout();
  66. //
  67. // CboAuthLoginType
  68. //
  69. this.CboAuthLoginType.Cursor = System.Windows.Forms.Cursors.Hand;
  70. this.CboAuthLoginType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  71. this.CboAuthLoginType.FormattingEnabled = true;
  72. this.CboAuthLoginType.Items.AddRange(new object[] {
  73. " authLoginId",
  74. " authLoginPassword",
  75. " authLoginCert"});
  76. this.CboAuthLoginType.Location = new System.Drawing.Point(787, 68);
  77. this.CboAuthLoginType.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  78. this.CboAuthLoginType.Name = "CboAuthLoginType";
  79. this.CboAuthLoginType.Size = new System.Drawing.Size(202, 23);
  80. this.CboAuthLoginType.TabIndex = 9;
  81. //
  82. // label1
  83. //
  84. this.label1.AutoSize = true;
  85. this.label1.Location = new System.Drawing.Point(379, 8);
  86. this.label1.Name = "label1";
  87. this.label1.Size = new System.Drawing.Size(53, 15);
  88. this.label1.TabIndex = 1;
  89. this.label1.Text = "TenantId";
  90. //
  91. // label2
  92. //
  93. this.label2.AutoSize = true;
  94. this.label2.Location = new System.Drawing.Point(733, 10);
  95. this.label2.Name = "label2";
  96. this.label2.Size = new System.Drawing.Size(48, 15);
  97. this.label2.TabIndex = 2;
  98. this.label2.Text = "ClientId";
  99. //
  100. // label3
  101. //
  102. this.label3.AutoSize = true;
  103. this.label3.Location = new System.Drawing.Point(15, 9);
  104. this.label3.Name = "label3";
  105. this.label3.Size = new System.Drawing.Size(68, 15);
  106. this.label3.TabIndex = 3;
  107. this.label3.Text = "Application";
  108. //
  109. // TxtTenantId
  110. //
  111. this.TxtTenantId.Location = new System.Drawing.Point(439, 6);
  112. this.TxtTenantId.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  113. this.TxtTenantId.Name = "TxtTenantId";
  114. this.TxtTenantId.Size = new System.Drawing.Size(265, 23);
  115. this.TxtTenantId.TabIndex = 2;
  116. this.TxtTenantId.Text = "0e225915-3be3-419c-aa04-284d7de5e16b";
  117. //
  118. // TxtClientId
  119. //
  120. this.TxtClientId.Location = new System.Drawing.Point(787, 6);
  121. this.TxtClientId.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  122. this.TxtClientId.Name = "TxtClientId";
  123. this.TxtClientId.Size = new System.Drawing.Size(265, 23);
  124. this.TxtClientId.TabIndex = 3;
  125. //
  126. // TxtAppName
  127. //
  128. this.TxtAppName.Location = new System.Drawing.Point(87, 6);
  129. this.TxtAppName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  130. this.TxtAppName.Name = "TxtAppName";
  131. this.TxtAppName.Size = new System.Drawing.Size(193, 23);
  132. this.TxtAppName.TabIndex = 0;
  133. //
  134. // TxtAppVer
  135. //
  136. this.TxtAppVer.Location = new System.Drawing.Point(285, 6);
  137. this.TxtAppVer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  138. this.TxtAppVer.Name = "TxtAppVer";
  139. this.TxtAppVer.Size = new System.Drawing.Size(67, 23);
  140. this.TxtAppVer.TabIndex = 1;
  141. //
  142. // label5
  143. //
  144. this.label5.AutoSize = true;
  145. this.label5.Location = new System.Drawing.Point(716, 70);
  146. this.label5.Name = "label5";
  147. this.label5.Size = new System.Drawing.Size(67, 15);
  148. this.label5.TabIndex = 9;
  149. this.label5.Text = "Auth Login";
  150. //
  151. // TxtDomain
  152. //
  153. this.TxtDomain.Location = new System.Drawing.Point(87, 34);
  154. this.TxtDomain.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  155. this.TxtDomain.Name = "TxtDomain";
  156. this.TxtDomain.Size = new System.Drawing.Size(265, 23);
  157. this.TxtDomain.TabIndex = 5;
  158. //
  159. // label6
  160. //
  161. this.label6.AutoSize = true;
  162. this.label6.Location = new System.Drawing.Point(31, 38);
  163. this.label6.Name = "label6";
  164. this.label6.Size = new System.Drawing.Size(50, 15);
  165. this.label6.TabIndex = 10;
  166. this.label6.Text = "Domain";
  167. //
  168. // TxtEMail
  169. //
  170. this.TxtEMail.Location = new System.Drawing.Point(787, 38);
  171. this.TxtEMail.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  172. this.TxtEMail.Name = "TxtEMail";
  173. this.TxtEMail.Size = new System.Drawing.Size(265, 23);
  174. this.TxtEMail.TabIndex = 4;
  175. //
  176. // label7
  177. //
  178. this.label7.AutoSize = true;
  179. this.label7.Location = new System.Drawing.Point(740, 41);
  180. this.label7.Name = "label7";
  181. this.label7.Size = new System.Drawing.Size(41, 15);
  182. this.label7.TabIndex = 12;
  183. this.label7.Text = "E-Mail";
  184. //
  185. // TxtMipData
  186. //
  187. this.TxtMipData.Location = new System.Drawing.Point(439, 34);
  188. this.TxtMipData.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  189. this.TxtMipData.Name = "TxtMipData";
  190. this.TxtMipData.Size = new System.Drawing.Size(265, 23);
  191. this.TxtMipData.TabIndex = 6;
  192. //
  193. // label8
  194. //
  195. this.label8.AutoSize = true;
  196. this.label8.Location = new System.Drawing.Point(376, 38);
  197. this.label8.Name = "label8";
  198. this.label8.Size = new System.Drawing.Size(57, 15);
  199. this.label8.TabIndex = 14;
  200. this.label8.Text = "Mip Data";
  201. //
  202. // TxtSecretValue
  203. //
  204. this.TxtSecretValue.Location = new System.Drawing.Point(87, 64);
  205. this.TxtSecretValue.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  206. this.TxtSecretValue.Name = "TxtSecretValue";
  207. this.TxtSecretValue.Size = new System.Drawing.Size(265, 23);
  208. this.TxtSecretValue.TabIndex = 7;
  209. //
  210. // label9
  211. //
  212. this.label9.AutoSize = true;
  213. this.label9.Location = new System.Drawing.Point(7, 68);
  214. this.label9.Name = "label9";
  215. this.label9.Size = new System.Drawing.Size(74, 15);
  216. this.label9.TabIndex = 16;
  217. this.label9.Text = "Secret Value";
  218. //
  219. // TxtCertThumbPrint
  220. //
  221. this.TxtCertThumbPrint.Location = new System.Drawing.Point(439, 65);
  222. this.TxtCertThumbPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  223. this.TxtCertThumbPrint.Name = "TxtCertThumbPrint";
  224. this.TxtCertThumbPrint.Size = new System.Drawing.Size(265, 23);
  225. this.TxtCertThumbPrint.TabIndex = 8;
  226. //
  227. // label10
  228. //
  229. this.label10.AutoSize = true;
  230. this.label10.Location = new System.Drawing.Point(362, 69);
  231. this.label10.Name = "label10";
  232. this.label10.Size = new System.Drawing.Size(71, 15);
  233. this.label10.TabIndex = 18;
  234. this.label10.Text = "Cert Thumb";
  235. //
  236. // BtnInitialize
  237. //
  238. this.BtnInitialize.Cursor = System.Windows.Forms.Cursors.Hand;
  239. this.BtnInitialize.Location = new System.Drawing.Point(787, 98);
  240. this.BtnInitialize.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  241. this.BtnInitialize.Name = "BtnInitialize";
  242. this.BtnInitialize.Size = new System.Drawing.Size(129, 22);
  243. this.BtnInitialize.TabIndex = 19;
  244. this.BtnInitialize.Text = "Initialize";
  245. this.BtnInitialize.UseVisualStyleBackColor = true;
  246. this.BtnInitialize.Click += new System.EventHandler(this.BtnInitialize_Click);
  247. //
  248. // BtnSingOut
  249. //
  250. this.BtnSingOut.Cursor = System.Windows.Forms.Cursors.Hand;
  251. this.BtnSingOut.Enabled = false;
  252. this.BtnSingOut.Location = new System.Drawing.Point(923, 98);
  253. this.BtnSingOut.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  254. this.BtnSingOut.Name = "BtnSingOut";
  255. this.BtnSingOut.Size = new System.Drawing.Size(129, 22);
  256. this.BtnSingOut.TabIndex = 20;
  257. this.BtnSingOut.Text = "Sign Out";
  258. this.BtnSingOut.UseVisualStyleBackColor = true;
  259. this.BtnSingOut.Click += new System.EventHandler(this.BtnSingOut_Click);
  260. //
  261. // label4
  262. //
  263. this.label4.AutoSize = true;
  264. this.label4.Location = new System.Drawing.Point(26, 191);
  265. this.label4.Name = "label4";
  266. this.label4.Size = new System.Drawing.Size(57, 15);
  267. this.label4.TabIndex = 21;
  268. this.label4.Text = "Input File";
  269. //
  270. // TxtInputFile
  271. //
  272. this.TxtInputFile.Location = new System.Drawing.Point(87, 186);
  273. this.TxtInputFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  274. this.TxtInputFile.Name = "TxtInputFile";
  275. this.TxtInputFile.ReadOnly = true;
  276. this.TxtInputFile.Size = new System.Drawing.Size(541, 23);
  277. this.TxtInputFile.TabIndex = 22;
  278. //
  279. // BtnFileSelect
  280. //
  281. this.BtnFileSelect.Cursor = System.Windows.Forms.Cursors.Hand;
  282. this.BtnFileSelect.Location = new System.Drawing.Point(633, 186);
  283. this.BtnFileSelect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  284. this.BtnFileSelect.Name = "BtnFileSelect";
  285. this.BtnFileSelect.Size = new System.Drawing.Size(70, 22);
  286. this.BtnFileSelect.TabIndex = 23;
  287. this.BtnFileSelect.Text = "Select";
  288. this.BtnFileSelect.UseVisualStyleBackColor = true;
  289. this.BtnFileSelect.Click += new System.EventHandler(this.BtnFileSelect_Click);
  290. //
  291. // TxtActualFile
  292. //
  293. this.TxtActualFile.Location = new System.Drawing.Point(87, 215);
  294. this.TxtActualFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  295. this.TxtActualFile.Name = "TxtActualFile";
  296. this.TxtActualFile.ReadOnly = true;
  297. this.TxtActualFile.Size = new System.Drawing.Size(616, 23);
  298. this.TxtActualFile.TabIndex = 25;
  299. //
  300. // label11
  301. //
  302. this.label11.AutoSize = true;
  303. this.label11.Location = new System.Drawing.Point(19, 219);
  304. this.label11.Name = "label11";
  305. this.label11.Size = new System.Drawing.Size(63, 15);
  306. this.label11.TabIndex = 24;
  307. this.label11.Text = "Actual File";
  308. //
  309. // TxtLog
  310. //
  311. this.TxtLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  312. | System.Windows.Forms.AnchorStyles.Left)
  313. | System.Windows.Forms.AnchorStyles.Right)));
  314. this.TxtLog.BackColor = System.Drawing.SystemColors.WindowText;
  315. this.TxtLog.Font = new System.Drawing.Font("D2Coding", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  316. this.TxtLog.ForeColor = System.Drawing.SystemColors.Window;
  317. this.TxtLog.Location = new System.Drawing.Point(4, 248);
  318. this.TxtLog.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  319. this.TxtLog.Name = "TxtLog";
  320. this.TxtLog.ReadOnly = true;
  321. this.TxtLog.Size = new System.Drawing.Size(1056, 306);
  322. this.TxtLog.TabIndex = 26;
  323. this.TxtLog.Text = "";
  324. //
  325. // BtnLogClear
  326. //
  327. this.BtnLogClear.Cursor = System.Windows.Forms.Cursors.Hand;
  328. this.BtnLogClear.Location = new System.Drawing.Point(982, 218);
  329. this.BtnLogClear.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  330. this.BtnLogClear.Name = "BtnLogClear";
  331. this.BtnLogClear.Size = new System.Drawing.Size(70, 22);
  332. this.BtnLogClear.TabIndex = 27;
  333. this.BtnLogClear.Text = "Clear";
  334. this.BtnLogClear.UseVisualStyleBackColor = true;
  335. this.BtnLogClear.Click += new System.EventHandler(this.BtnLogClear_Click);
  336. //
  337. // label12
  338. //
  339. this.label12.AutoSize = true;
  340. this.label12.Location = new System.Drawing.Point(23, 98);
  341. this.label12.Name = "label12";
  342. this.label12.Size = new System.Drawing.Size(57, 15);
  343. this.label12.TabIndex = 28;
  344. this.label12.Text = "File Label";
  345. //
  346. // CboFileLabel
  347. //
  348. this.CboFileLabel.Cursor = System.Windows.Forms.Cursors.Hand;
  349. this.CboFileLabel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  350. this.CboFileLabel.FormattingEnabled = true;
  351. this.CboFileLabel.Items.AddRange(new object[] {
  352. " authLoginId",
  353. " authLoginPassword",
  354. " authLoginCert"});
  355. this.CboFileLabel.Location = new System.Drawing.Point(87, 94);
  356. this.CboFileLabel.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  357. this.CboFileLabel.Name = "CboFileLabel";
  358. this.CboFileLabel.Size = new System.Drawing.Size(616, 23);
  359. this.CboFileLabel.TabIndex = 29;
  360. //
  361. // CboProtection
  362. //
  363. this.CboProtection.Cursor = System.Windows.Forms.Cursors.Hand;
  364. this.CboProtection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  365. this.CboProtection.FormattingEnabled = true;
  366. this.CboProtection.Items.AddRange(new object[] {
  367. " authLoginId",
  368. " authLoginPassword",
  369. " authLoginCert"});
  370. this.CboProtection.Location = new System.Drawing.Point(87, 156);
  371. this.CboProtection.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  372. this.CboProtection.Name = "CboProtection";
  373. this.CboProtection.Size = new System.Drawing.Size(616, 23);
  374. this.CboProtection.TabIndex = 31;
  375. //
  376. // label13
  377. //
  378. this.label13.AutoSize = true;
  379. this.label13.Location = new System.Drawing.Point(17, 159);
  380. this.label13.Name = "label13";
  381. this.label13.Size = new System.Drawing.Size(62, 15);
  382. this.label13.TabIndex = 30;
  383. this.label13.Text = "Protection";
  384. //
  385. // CboPolicyLabel
  386. //
  387. this.CboPolicyLabel.Cursor = System.Windows.Forms.Cursors.Hand;
  388. this.CboPolicyLabel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  389. this.CboPolicyLabel.FormattingEnabled = true;
  390. this.CboPolicyLabel.Items.AddRange(new object[] {
  391. " authLoginId",
  392. " authLoginPassword",
  393. " authLoginCert"});
  394. this.CboPolicyLabel.Location = new System.Drawing.Point(87, 125);
  395. this.CboPolicyLabel.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  396. this.CboPolicyLabel.Name = "CboPolicyLabel";
  397. this.CboPolicyLabel.Size = new System.Drawing.Size(616, 23);
  398. this.CboPolicyLabel.TabIndex = 33;
  399. //
  400. // label14
  401. //
  402. this.label14.AutoSize = true;
  403. this.label14.Location = new System.Drawing.Point(10, 128);
  404. this.label14.Name = "label14";
  405. this.label14.Size = new System.Drawing.Size(71, 15);
  406. this.label14.TabIndex = 32;
  407. this.label14.Text = "Policy Label";
  408. //
  409. // BtnGetInfo
  410. //
  411. this.BtnGetInfo.Cursor = System.Windows.Forms.Cursors.Hand;
  412. this.BtnGetInfo.Location = new System.Drawing.Point(719, 186);
  413. this.BtnGetInfo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  414. this.BtnGetInfo.Name = "BtnGetInfo";
  415. this.BtnGetInfo.Size = new System.Drawing.Size(70, 22);
  416. this.BtnGetInfo.TabIndex = 34;
  417. this.BtnGetInfo.Text = "Info";
  418. this.BtnGetInfo.UseVisualStyleBackColor = true;
  419. this.BtnGetInfo.Click += new System.EventHandler(this.BtnGetInfo_Click);
  420. //
  421. // FrmMain
  422. //
  423. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  424. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  425. this.ClientSize = new System.Drawing.Size(1063, 555);
  426. this.Controls.Add(this.BtnGetInfo);
  427. this.Controls.Add(this.CboPolicyLabel);
  428. this.Controls.Add(this.label14);
  429. this.Controls.Add(this.CboProtection);
  430. this.Controls.Add(this.label13);
  431. this.Controls.Add(this.CboFileLabel);
  432. this.Controls.Add(this.label12);
  433. this.Controls.Add(this.BtnLogClear);
  434. this.Controls.Add(this.TxtLog);
  435. this.Controls.Add(this.TxtActualFile);
  436. this.Controls.Add(this.label11);
  437. this.Controls.Add(this.BtnFileSelect);
  438. this.Controls.Add(this.TxtInputFile);
  439. this.Controls.Add(this.label4);
  440. this.Controls.Add(this.BtnSingOut);
  441. this.Controls.Add(this.BtnInitialize);
  442. this.Controls.Add(this.TxtCertThumbPrint);
  443. this.Controls.Add(this.label10);
  444. this.Controls.Add(this.TxtSecretValue);
  445. this.Controls.Add(this.label9);
  446. this.Controls.Add(this.TxtMipData);
  447. this.Controls.Add(this.label8);
  448. this.Controls.Add(this.TxtEMail);
  449. this.Controls.Add(this.label7);
  450. this.Controls.Add(this.TxtDomain);
  451. this.Controls.Add(this.label6);
  452. this.Controls.Add(this.label5);
  453. this.Controls.Add(this.TxtAppVer);
  454. this.Controls.Add(this.TxtAppName);
  455. this.Controls.Add(this.TxtClientId);
  456. this.Controls.Add(this.TxtTenantId);
  457. this.Controls.Add(this.label3);
  458. this.Controls.Add(this.label2);
  459. this.Controls.Add(this.label1);
  460. this.Controls.Add(this.CboAuthLoginType);
  461. this.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  462. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  463. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  464. this.MaximizeBox = false;
  465. this.Name = "FrmMain";
  466. this.Text = "Azure Information File Viewer";
  467. this.ResumeLayout(false);
  468. this.PerformLayout();
  469. }
  470. #endregion
  471. private System.Windows.Forms.ComboBox CboAuthLoginType;
  472. private System.Windows.Forms.Label label1;
  473. private System.Windows.Forms.Label label2;
  474. private System.Windows.Forms.Label label3;
  475. private System.Windows.Forms.TextBox TxtTenantId;
  476. private System.Windows.Forms.TextBox TxtClientId;
  477. private System.Windows.Forms.TextBox TxtAppName;
  478. private System.Windows.Forms.TextBox TxtAppVer;
  479. private System.Windows.Forms.Label label5;
  480. private System.Windows.Forms.TextBox TxtDomain;
  481. private System.Windows.Forms.Label label6;
  482. private System.Windows.Forms.TextBox TxtEMail;
  483. private System.Windows.Forms.Label label7;
  484. private System.Windows.Forms.TextBox TxtMipData;
  485. private System.Windows.Forms.Label label8;
  486. private System.Windows.Forms.TextBox TxtSecretValue;
  487. private System.Windows.Forms.Label label9;
  488. private System.Windows.Forms.TextBox TxtCertThumbPrint;
  489. private System.Windows.Forms.Label label10;
  490. private System.Windows.Forms.Button BtnInitialize;
  491. private System.Windows.Forms.Button BtnSingOut;
  492. private System.Windows.Forms.Label label4;
  493. private System.Windows.Forms.TextBox TxtInputFile;
  494. private System.Windows.Forms.Button BtnFileSelect;
  495. private System.Windows.Forms.TextBox TxtActualFile;
  496. private System.Windows.Forms.Label label11;
  497. private System.Windows.Forms.RichTextBox TxtLog;
  498. private System.Windows.Forms.Button BtnLogClear;
  499. private System.Windows.Forms.Label label12;
  500. private System.Windows.Forms.ComboBox CboFileLabel;
  501. private System.Windows.Forms.ComboBox CboProtection;
  502. private System.Windows.Forms.Label label13;
  503. private System.Windows.Forms.ComboBox CboPolicyLabel;
  504. private System.Windows.Forms.Label label14;
  505. private System.Windows.Forms.Button BtnGetInfo;
  506. }
  507. }