UriPocForm.Designer.cs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. namespace CustomUrlSchemeRegistrationPoC
  2. {
  3. partial class UriPocForm
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.InstallButton = new System.Windows.Forms.Button();
  29. this.UninstallButton = new System.Windows.Forms.Button();
  30. this.TryCallButton = new System.Windows.Forms.Button();
  31. this.SchemeLabel = new System.Windows.Forms.Label();
  32. this.SchemeTextBox = new System.Windows.Forms.TextBox();
  33. this.DisplayLabel = new System.Windows.Forms.Label();
  34. this.DisplayTextBox = new System.Windows.Forms.TextBox();
  35. this.ArgsLabel = new System.Windows.Forms.Label();
  36. this.TryCallArgsTextBox = new System.Windows.Forms.TextBox();
  37. this.SuspendLayout();
  38. //
  39. // InstallButton
  40. //
  41. this.InstallButton.Location = new System.Drawing.Point(12, 99);
  42. this.InstallButton.Name = "InstallButton";
  43. this.InstallButton.Size = new System.Drawing.Size(90, 42);
  44. this.InstallButton.TabIndex = 0;
  45. this.InstallButton.Text = "Install";
  46. this.InstallButton.UseVisualStyleBackColor = true;
  47. this.InstallButton.Click += new System.EventHandler(this.InstallButton_Click);
  48. //
  49. // UninstallButton
  50. //
  51. this.UninstallButton.Location = new System.Drawing.Point(136, 99);
  52. this.UninstallButton.Name = "UninstallButton";
  53. this.UninstallButton.Size = new System.Drawing.Size(90, 42);
  54. this.UninstallButton.TabIndex = 0;
  55. this.UninstallButton.Text = "Uninstall";
  56. this.UninstallButton.UseVisualStyleBackColor = true;
  57. this.UninstallButton.Click += new System.EventHandler(this.UninstallButton_Click);
  58. //
  59. // TryCallButton
  60. //
  61. this.TryCallButton.Location = new System.Drawing.Point(260, 99);
  62. this.TryCallButton.Name = "TryCallButton";
  63. this.TryCallButton.Size = new System.Drawing.Size(90, 42);
  64. this.TryCallButton.TabIndex = 0;
  65. this.TryCallButton.Text = "Try Call";
  66. this.TryCallButton.UseVisualStyleBackColor = true;
  67. this.TryCallButton.Click += new System.EventHandler(this.TryCallButton_Click);
  68. //
  69. // SchemeLabel
  70. //
  71. this.SchemeLabel.AutoSize = true;
  72. this.SchemeLabel.Location = new System.Drawing.Point(20, 15);
  73. this.SchemeLabel.Name = "SchemeLabel";
  74. this.SchemeLabel.Size = new System.Drawing.Size(71, 12);
  75. this.SchemeLabel.TabIndex = 1;
  76. this.SchemeLabel.Text = "URI Scheme:";
  77. //
  78. // SchemeTextBox
  79. //
  80. this.SchemeTextBox.Location = new System.Drawing.Point(109, 12);
  81. this.SchemeTextBox.Name = "SchemeTextBox";
  82. this.SchemeTextBox.Size = new System.Drawing.Size(242, 21);
  83. this.SchemeTextBox.TabIndex = 2;
  84. this.SchemeTextBox.Text = "MyUri";
  85. //
  86. // DisplayLabel
  87. //
  88. this.DisplayLabel.AutoSize = true;
  89. this.DisplayLabel.Location = new System.Drawing.Point(20, 42);
  90. this.DisplayLabel.Name = "DisplayLabel";
  91. this.DisplayLabel.Size = new System.Drawing.Size(83, 12);
  92. this.DisplayLabel.TabIndex = 1;
  93. this.DisplayLabel.Text = "Display Name:";
  94. //
  95. // DisplayTextBox
  96. //
  97. this.DisplayTextBox.Location = new System.Drawing.Point(109, 39);
  98. this.DisplayTextBox.Name = "DisplayTextBox";
  99. this.DisplayTextBox.Size = new System.Drawing.Size(242, 21);
  100. this.DisplayTextBox.TabIndex = 2;
  101. this.DisplayTextBox.Text = "自定义 URI 协议";
  102. //
  103. // ArgsLabel
  104. //
  105. this.ArgsLabel.AutoSize = true;
  106. this.ArgsLabel.Location = new System.Drawing.Point(19, 69);
  107. this.ArgsLabel.Name = "ArgsLabel";
  108. this.ArgsLabel.Size = new System.Drawing.Size(65, 12);
  109. this.ArgsLabel.TabIndex = 1;
  110. this.ArgsLabel.Text = "Call Args:";
  111. //
  112. // TryCallArgsTextBox
  113. //
  114. this.TryCallArgsTextBox.Location = new System.Drawing.Point(108, 66);
  115. this.TryCallArgsTextBox.Name = "TryCallArgsTextBox";
  116. this.TryCallArgsTextBox.Size = new System.Drawing.Size(242, 21);
  117. this.TryCallArgsTextBox.TabIndex = 2;
  118. this.TryCallArgsTextBox.Text = "ABCD 甲乙丙丁 1234";
  119. //
  120. // UriPocForm
  121. //
  122. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  123. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  124. this.ClientSize = new System.Drawing.Size(362, 153);
  125. this.Controls.Add(this.TryCallArgsTextBox);
  126. this.Controls.Add(this.ArgsLabel);
  127. this.Controls.Add(this.DisplayTextBox);
  128. this.Controls.Add(this.DisplayLabel);
  129. this.Controls.Add(this.SchemeTextBox);
  130. this.Controls.Add(this.SchemeLabel);
  131. this.Controls.Add(this.TryCallButton);
  132. this.Controls.Add(this.UninstallButton);
  133. this.Controls.Add(this.InstallButton);
  134. this.Name = "UriPocForm";
  135. this.Text = "Custom URI Scheme Registration PoC";
  136. this.ResumeLayout(false);
  137. this.PerformLayout();
  138. }
  139. #endregion
  140. private System.Windows.Forms.Button InstallButton;
  141. private System.Windows.Forms.Button UninstallButton;
  142. private System.Windows.Forms.Button TryCallButton;
  143. private System.Windows.Forms.Label SchemeLabel;
  144. private System.Windows.Forms.TextBox SchemeTextBox;
  145. private System.Windows.Forms.Label DisplayLabel;
  146. private System.Windows.Forms.TextBox DisplayTextBox;
  147. private System.Windows.Forms.Label ArgsLabel;
  148. private System.Windows.Forms.TextBox TryCallArgsTextBox;
  149. }
  150. }