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

132 lines
5.8 KiB

1 year ago
  1. namespace CircleViewer.Dialogs
  2. {
  3. partial class RevokeMemberDlg
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RevokeMemberDlg));
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.bnRevoke = new System.Windows.Forms.Button();
  31. this.bnCancel = new System.Windows.Forms.Button();
  32. this.panel2 = new System.Windows.Forms.Panel();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.lbMemberList = new System.Windows.Forms.ListBox();
  35. this.panel1.SuspendLayout();
  36. this.panel2.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // panel1
  40. //
  41. this.panel1.Controls.Add(this.bnRevoke);
  42. this.panel1.Controls.Add(this.bnCancel);
  43. this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  44. this.panel1.Location = new System.Drawing.Point(0, 563);
  45. this.panel1.Name = "panel1";
  46. this.panel1.Size = new System.Drawing.Size(384, 36);
  47. this.panel1.TabIndex = 1;
  48. //
  49. // bnRevoke
  50. //
  51. this.bnRevoke.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  52. this.bnRevoke.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  53. this.bnRevoke.Location = new System.Drawing.Point(202, 6);
  54. this.bnRevoke.Name = "bnRevoke";
  55. this.bnRevoke.Size = new System.Drawing.Size(75, 23);
  56. this.bnRevoke.TabIndex = 1;
  57. this.bnRevoke.Text = "Revoke";
  58. this.bnRevoke.UseVisualStyleBackColor = true;
  59. this.bnRevoke.Click += new System.EventHandler(this.bnRevoke_Click);
  60. //
  61. // bnCancel
  62. //
  63. this.bnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  64. this.bnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  65. this.bnCancel.Location = new System.Drawing.Point(296, 6);
  66. this.bnCancel.Name = "bnCancel";
  67. this.bnCancel.Size = new System.Drawing.Size(75, 23);
  68. this.bnCancel.TabIndex = 0;
  69. this.bnCancel.Text = "Cancel";
  70. this.bnCancel.UseVisualStyleBackColor = true;
  71. //
  72. // panel2
  73. //
  74. this.panel2.Controls.Add(this.label1);
  75. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  76. this.panel2.Location = new System.Drawing.Point(0, 0);
  77. this.panel2.Name = "panel2";
  78. this.panel2.Size = new System.Drawing.Size(384, 34);
  79. this.panel2.TabIndex = 3;
  80. //
  81. // label1
  82. //
  83. this.label1.AutoSize = true;
  84. this.label1.Location = new System.Drawing.Point(4, 9);
  85. this.label1.Name = "label1";
  86. this.label1.Size = new System.Drawing.Size(181, 16);
  87. this.label1.TabIndex = 0;
  88. this.label1.Text = "Select the member to revoke.";
  89. //
  90. // lbMemberList
  91. //
  92. this.lbMemberList.Dock = System.Windows.Forms.DockStyle.Fill;
  93. this.lbMemberList.FormattingEnabled = true;
  94. this.lbMemberList.ItemHeight = 16;
  95. this.lbMemberList.Location = new System.Drawing.Point(0, 34);
  96. this.lbMemberList.Name = "lbMemberList";
  97. this.lbMemberList.Size = new System.Drawing.Size(384, 529);
  98. this.lbMemberList.TabIndex = 4;
  99. //
  100. // RevokeMemberDlg
  101. //
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  104. this.CancelButton = this.bnRevoke;
  105. this.ClientSize = new System.Drawing.Size(384, 599);
  106. this.Controls.Add(this.lbMemberList);
  107. this.Controls.Add(this.panel2);
  108. this.Controls.Add(this.panel1);
  109. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  110. this.Name = "RevokeMemberDlg";
  111. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  112. this.Text = "Revoke Member";
  113. this.Load += new System.EventHandler(this.RevokeMemberDlg_Load);
  114. this.panel1.ResumeLayout(false);
  115. this.panel2.ResumeLayout(false);
  116. this.panel2.PerformLayout();
  117. this.ResumeLayout(false);
  118. }
  119. #endregion
  120. private System.Windows.Forms.Panel panel1;
  121. private System.Windows.Forms.Button bnRevoke;
  122. private System.Windows.Forms.Button bnCancel;
  123. private System.Windows.Forms.Panel panel2;
  124. private System.Windows.Forms.Label label1;
  125. private System.Windows.Forms.ListBox lbMemberList;
  126. }
  127. }