/src/ext/OfficeExtension/wixext/PackageInfoStep.Designer.cs

http://wix.codeplex.com · C# · 174 lines · 113 code · 8 blank · 53 comment · 3 complexity · 58bf55fc329766c758ed5f5605771015 MD5 · raw file

  1. //-------------------------------------------------------------------------------------------------
  2. // <copyright file="PackageInfoStep.Designer.cs" company="Outercurve Foundation">
  3. // Copyright (c) 2004, Outercurve Foundation.
  4. // This software is released under Microsoft Reciprocal License (MS-RL).
  5. // The license and further copyright text can be found in the file
  6. // LICENSE.TXT at the root directory of the distribution.
  7. // </copyright>
  8. //
  9. // <summary>
  10. // Package info for the Office Addin UI for MSI builder for ClickThrough.
  11. // </summary>
  12. //-------------------------------------------------------------------------------------------------
  13. namespace WixToolset.Extensions.OfficeAddin
  14. {
  15. /// <summary>
  16. /// Step to get package information about Office Addin.
  17. /// </summary>
  18. internal partial class PackageInfoStep
  19. {
  20. private System.Windows.Forms.Label nameLabel;
  21. private System.Windows.Forms.TextBox nameTextBox;
  22. private System.Windows.Forms.Label manufacturerLabel;
  23. private System.Windows.Forms.TextBox manufacturerTextBox;
  24. private System.Windows.Forms.Label descriptionLabel;
  25. private System.Windows.Forms.TextBox descriptionTextBox;
  26. private System.Windows.Forms.Label versionLabel;
  27. private System.Windows.Forms.TextBox versionTextBox;
  28. /// <summary>
  29. /// Required designer variable.
  30. /// </summary>
  31. private System.ComponentModel.IContainer components = null;
  32. /// <summary>
  33. /// Clean up any resources being used.
  34. /// </summary>
  35. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  36. protected override void Dispose(bool disposing)
  37. {
  38. if (disposing && (this.components != null))
  39. {
  40. this.components.Dispose();
  41. }
  42. base.Dispose(disposing);
  43. }
  44. #region Component Designer generated code
  45. /// <summary>
  46. /// Required method for Designer support - do not modify
  47. /// the contents of this method with the code editor.
  48. /// </summary>
  49. private void InitializeComponent()
  50. {
  51. this.nameLabel = new System.Windows.Forms.Label();
  52. this.nameTextBox = new System.Windows.Forms.TextBox();
  53. this.manufacturerLabel = new System.Windows.Forms.Label();
  54. this.manufacturerTextBox = new System.Windows.Forms.TextBox();
  55. this.descriptionLabel = new System.Windows.Forms.Label();
  56. this.descriptionTextBox = new System.Windows.Forms.TextBox();
  57. this.versionLabel = new System.Windows.Forms.Label();
  58. this.versionTextBox = new System.Windows.Forms.TextBox();
  59. this.SuspendLayout();
  60. //
  61. // nameLabel
  62. //
  63. this.nameLabel.AutoSize = true;
  64. this.nameLabel.Location = new System.Drawing.Point(3, 6);
  65. this.nameLabel.Name = "nameLabel";
  66. this.nameLabel.Size = new System.Drawing.Size(93, 13);
  67. this.nameLabel.TabIndex = 0;
  68. this.nameLabel.Text = "Application &Name:";
  69. //
  70. // nameTextBox
  71. //
  72. this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  73. | System.Windows.Forms.AnchorStyles.Right)));
  74. this.nameTextBox.Location = new System.Drawing.Point(102, 3);
  75. this.nameTextBox.Name = "nameTextBox";
  76. this.nameTextBox.Size = new System.Drawing.Size(195, 20);
  77. this.nameTextBox.TabIndex = 1;
  78. this.nameTextBox.Validated += new System.EventHandler(this.NameTextBox_Validated);
  79. this.nameTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  80. //
  81. // manufacturerLabel
  82. //
  83. this.manufacturerLabel.AutoSize = true;
  84. this.manufacturerLabel.Location = new System.Drawing.Point(21, 33);
  85. this.manufacturerLabel.Name = "manufacturerLabel";
  86. this.manufacturerLabel.Size = new System.Drawing.Size(73, 13);
  87. this.manufacturerLabel.TabIndex = 2;
  88. this.manufacturerLabel.Text = "&Manufacturer:";
  89. //
  90. // manufacturerTextBox
  91. //
  92. this.manufacturerTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  93. | System.Windows.Forms.AnchorStyles.Right)));
  94. this.manufacturerTextBox.Location = new System.Drawing.Point(102, 30);
  95. this.manufacturerTextBox.Name = "manufacturerTextBox";
  96. this.manufacturerTextBox.Size = new System.Drawing.Size(195, 20);
  97. this.manufacturerTextBox.TabIndex = 3;
  98. this.manufacturerTextBox.Validated += new System.EventHandler(this.ManufacturerTextBox_Validated);
  99. this.manufacturerTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  100. //
  101. // descriptionLabel
  102. //
  103. this.descriptionLabel.AutoSize = true;
  104. this.descriptionLabel.Location = new System.Drawing.Point(3, 85);
  105. this.descriptionLabel.Name = "descriptionLabel";
  106. this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
  107. this.descriptionLabel.TabIndex = 6;
  108. this.descriptionLabel.Text = "&Description:";
  109. //
  110. // descriptionTextBox
  111. //
  112. this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  113. | System.Windows.Forms.AnchorStyles.Left)
  114. | System.Windows.Forms.AnchorStyles.Right)));
  115. this.descriptionTextBox.Location = new System.Drawing.Point(72, 85);
  116. this.descriptionTextBox.Multiline = true;
  117. this.descriptionTextBox.Name = "descriptionTextBox";
  118. this.descriptionTextBox.Size = new System.Drawing.Size(225, 97);
  119. this.descriptionTextBox.TabIndex = 7;
  120. this.descriptionTextBox.Validated += new System.EventHandler(this.DescriptionTextBox_Validated);
  121. this.descriptionTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  122. //
  123. // versionLabel
  124. //
  125. this.versionLabel.AutoSize = true;
  126. this.versionLabel.Location = new System.Drawing.Point(21, 60);
  127. this.versionLabel.Name = "versionLabel";
  128. this.versionLabel.Size = new System.Drawing.Size(45, 13);
  129. this.versionLabel.TabIndex = 4;
  130. this.versionLabel.Text = "&Version:";
  131. //
  132. // versionTextBox
  133. //
  134. this.versionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  135. | System.Windows.Forms.AnchorStyles.Right)));
  136. this.versionTextBox.Location = new System.Drawing.Point(72, 57);
  137. this.versionTextBox.Name = "versionTextBox";
  138. this.versionTextBox.Size = new System.Drawing.Size(225, 20);
  139. this.versionTextBox.TabIndex = 5;
  140. this.versionTextBox.Validated += new System.EventHandler(this.VersionTextBox_Validated);
  141. this.versionTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.VersionTextBox_Validating);
  142. this.versionTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  143. //
  144. // PackageInfoStep
  145. //
  146. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  147. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  148. this.BackColor = System.Drawing.Color.Transparent;
  149. this.Controls.Add(this.descriptionTextBox);
  150. this.Controls.Add(this.descriptionLabel);
  151. this.Controls.Add(this.versionTextBox);
  152. this.Controls.Add(this.versionLabel);
  153. this.Controls.Add(this.manufacturerTextBox);
  154. this.Controls.Add(this.manufacturerLabel);
  155. this.Controls.Add(this.nameTextBox);
  156. this.Controls.Add(this.nameLabel);
  157. this.Name = "PackageInfoStep";
  158. this.Size = new System.Drawing.Size(300, 187);
  159. this.Tag = "Provide the general information about your applcation. Most of this information " +
  160. "will be auto-populated for you after an entry point is selected in Step 2.";
  161. this.ResumeLayout(false);
  162. this.PerformLayout();
  163. }
  164. #endregion
  165. }
  166. }