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.

129 lines
5.6 KiB

1 year ago
  1. namespace CircleViewer.Dialogs
  2. {
  3. partial class RevokeDeviceDlg
  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(RevokeDeviceDlg));
  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.treeView1 = new System.Windows.Forms.TreeView();
  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, 712);
  45. this.panel1.Name = "panel1";
  46. this.panel1.Size = new System.Drawing.Size(535, 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.Location = new System.Drawing.Point(353, 7);
  53. this.bnRevoke.Name = "bnRevoke";
  54. this.bnRevoke.Size = new System.Drawing.Size(75, 23);
  55. this.bnRevoke.TabIndex = 1;
  56. this.bnRevoke.Text = "Revoke";
  57. this.bnRevoke.UseVisualStyleBackColor = true;
  58. this.bnRevoke.Click += new System.EventHandler(this.bnRevoke_Click);
  59. //
  60. // bnCancel
  61. //
  62. this.bnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  63. this.bnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  64. this.bnCancel.Location = new System.Drawing.Point(447, 7);
  65. this.bnCancel.Name = "bnCancel";
  66. this.bnCancel.Size = new System.Drawing.Size(75, 23);
  67. this.bnCancel.TabIndex = 0;
  68. this.bnCancel.Text = "Cancel";
  69. this.bnCancel.UseVisualStyleBackColor = true;
  70. //
  71. // panel2
  72. //
  73. this.panel2.Controls.Add(this.label1);
  74. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  75. this.panel2.Location = new System.Drawing.Point(0, 0);
  76. this.panel2.Name = "panel2";
  77. this.panel2.Size = new System.Drawing.Size(535, 34);
  78. this.panel2.TabIndex = 4;
  79. //
  80. // label1
  81. //
  82. this.label1.AutoSize = true;
  83. this.label1.Location = new System.Drawing.Point(4, 9);
  84. this.label1.Name = "label1";
  85. this.label1.Size = new System.Drawing.Size(277, 16);
  86. this.label1.TabIndex = 0;
  87. this.label1.Text = "Select the member, then the device to revoke.";
  88. //
  89. // treeView1
  90. //
  91. this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
  92. this.treeView1.Location = new System.Drawing.Point(0, 34);
  93. this.treeView1.Name = "treeView1";
  94. this.treeView1.Size = new System.Drawing.Size(535, 678);
  95. this.treeView1.TabIndex = 5;
  96. //
  97. // RevokeDeviceDlg
  98. //
  99. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  100. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101. this.CancelButton = this.bnCancel;
  102. this.ClientSize = new System.Drawing.Size(535, 748);
  103. this.Controls.Add(this.treeView1);
  104. this.Controls.Add(this.panel2);
  105. this.Controls.Add(this.panel1);
  106. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  107. this.Name = "RevokeDeviceDlg";
  108. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  109. this.Text = "Revoke Device";
  110. this.Load += new System.EventHandler(this.RevokeDeviceDlg_Load);
  111. this.panel1.ResumeLayout(false);
  112. this.panel2.ResumeLayout(false);
  113. this.panel2.PerformLayout();
  114. this.ResumeLayout(false);
  115. }
  116. #endregion
  117. private System.Windows.Forms.Panel panel1;
  118. private System.Windows.Forms.Button bnRevoke;
  119. private System.Windows.Forms.Button bnCancel;
  120. private System.Windows.Forms.Panel panel2;
  121. private System.Windows.Forms.Label label1;
  122. private System.Windows.Forms.TreeView treeView1;
  123. }
  124. }