You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

DeleteAssembliesForm.Designer.cs 2.8 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. namespace ClickForensics.Quartz.Manager
  2. {
  3. partial class DeleteAssembliesForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.lbxAssemblies = new System.Windows.Forms.ListBox();
  29. this.btnDelete = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // lbxAssemblies
  33. //
  34. this.lbxAssemblies.FormattingEnabled = true;
  35. this.lbxAssemblies.Location = new System.Drawing.Point(42, 25);
  36. this.lbxAssemblies.Name = "lbxAssemblies";
  37. this.lbxAssemblies.Size = new System.Drawing.Size(162, 212);
  38. this.lbxAssemblies.TabIndex = 0;
  39. //
  40. // btnDelete
  41. //
  42. this.btnDelete.Location = new System.Drawing.Point(80, 243);
  43. this.btnDelete.Name = "btnDelete";
  44. this.btnDelete.Size = new System.Drawing.Size(75, 23);
  45. this.btnDelete.TabIndex = 1;
  46. this.btnDelete.Text = "Delete";
  47. this.btnDelete.UseVisualStyleBackColor = true;
  48. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  49. //
  50. // DeleteAssembliesForm
  51. //
  52. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  54. this.ClientSize = new System.Drawing.Size(247, 291);
  55. this.Controls.Add(this.btnDelete);
  56. this.Controls.Add(this.lbxAssemblies);
  57. this.Name = "DeleteAssembliesForm";
  58. this.Text = "DeleteAssembliesForm";
  59. this.Load += new System.EventHandler(this.DeleteAssembliesForm_Load);
  60. this.ResumeLayout(false);
  61. }
  62. #endregion
  63. private System.Windows.Forms.ListBox lbxAssemblies;
  64. private System.Windows.Forms.Button btnDelete;
  65. }
  66. }