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.

QRCodeForm.Designer.cs 3.7 kB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. namespace Shadowsocks.View
  2. {
  3. partial class QRCodeForm
  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.pictureBox1 = new System.Windows.Forms.PictureBox();
  29. this.listBox1 = new System.Windows.Forms.ListBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // pictureBox1
  34. //
  35. this.pictureBox1.Location = new System.Drawing.Point(10, 10);
  36. this.pictureBox1.Margin = new System.Windows.Forms.Padding(0);
  37. this.pictureBox1.Name = "pictureBox1";
  38. this.pictureBox1.Size = new System.Drawing.Size(210, 210);
  39. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  40. this.pictureBox1.TabIndex = 1;
  41. this.pictureBox1.TabStop = false;
  42. //
  43. // listBox1
  44. //
  45. this.listBox1.DisplayMember = "Value";
  46. this.listBox1.FormattingEnabled = true;
  47. this.listBox1.ItemHeight = 12;
  48. this.listBox1.Location = new System.Drawing.Point(224, 10);
  49. this.listBox1.Name = "listBox1";
  50. this.listBox1.ScrollAlwaysVisible = true;
  51. this.listBox1.Size = new System.Drawing.Size(227, 208);
  52. this.listBox1.TabIndex = 2;
  53. this.listBox1.ValueMember = "Key";
  54. this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
  55. //
  56. // QRCodeForm
  57. //
  58. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  59. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  60. this.AutoSize = true;
  61. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  62. this.BackColor = System.Drawing.Color.White;
  63. this.ClientSize = new System.Drawing.Size(457, 228);
  64. this.Controls.Add(this.listBox1);
  65. this.Controls.Add(this.pictureBox1);
  66. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  67. this.MaximizeBox = false;
  68. this.MinimizeBox = false;
  69. this.Name = "QRCodeForm";
  70. this.Padding = new System.Windows.Forms.Padding(10);
  71. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  72. this.Text = "QRCode";
  73. this.Load += new System.EventHandler(this.QRCodeForm_Load);
  74. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  75. this.ResumeLayout(false);
  76. }
  77. #endregion
  78. private System.Windows.Forms.PictureBox pictureBox1;
  79. private System.Windows.Forms.ListBox listBox1;
  80. }
  81. }