LibraryViewer.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. namespace MediaBrowser.ServerApplication
  2. {
  3. partial class LibraryViewer
  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(LibraryViewer));
  29. this.treeView1 = new System.Windows.Forms.TreeView();
  30. this.txtJson = new System.Windows.Forms.TextBox();
  31. this.panel1 = new System.Windows.Forms.Panel();
  32. this.selectUser = new System.Windows.Forms.ComboBox();
  33. this.lblType = new System.Windows.Forms.Label();
  34. this.panel2 = new System.Windows.Forms.Panel();
  35. this.panel1.SuspendLayout();
  36. this.panel2.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // treeView1
  40. //
  41. this.treeView1.Dock = System.Windows.Forms.DockStyle.Left;
  42. this.treeView1.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  43. this.treeView1.Location = new System.Drawing.Point(0, 0);
  44. this.treeView1.Name = "treeView1";
  45. this.treeView1.Size = new System.Drawing.Size(260, 517);
  46. this.treeView1.TabIndex = 0;
  47. //
  48. // txtJson
  49. //
  50. this.txtJson.Dock = System.Windows.Forms.DockStyle.Fill;
  51. this.txtJson.Font = new System.Drawing.Font("Consolas", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  52. this.txtJson.Location = new System.Drawing.Point(260, 0);
  53. this.txtJson.Multiline = true;
  54. this.txtJson.Name = "txtJson";
  55. this.txtJson.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  56. this.txtJson.Size = new System.Drawing.Size(524, 517);
  57. this.txtJson.TabIndex = 1;
  58. //
  59. // panel1
  60. //
  61. this.panel1.Controls.Add(this.selectUser);
  62. this.panel1.Controls.Add(this.lblType);
  63. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  64. this.panel1.Location = new System.Drawing.Point(0, 0);
  65. this.panel1.Name = "panel1";
  66. this.panel1.Size = new System.Drawing.Size(784, 44);
  67. this.panel1.TabIndex = 2;
  68. //
  69. // selectUser
  70. //
  71. this.selectUser.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  72. this.selectUser.FormattingEnabled = true;
  73. this.selectUser.Location = new System.Drawing.Point(12, 12);
  74. this.selectUser.Name = "selectUser";
  75. this.selectUser.Size = new System.Drawing.Size(121, 21);
  76. this.selectUser.TabIndex = 2;
  77. //
  78. // lblType
  79. //
  80. this.lblType.AutoSize = true;
  81. this.lblType.Location = new System.Drawing.Point(260, 15);
  82. this.lblType.Name = "lblType";
  83. this.lblType.Size = new System.Drawing.Size(0, 13);
  84. this.lblType.TabIndex = 1;
  85. //
  86. // panel2
  87. //
  88. this.panel2.Controls.Add(this.txtJson);
  89. this.panel2.Controls.Add(this.treeView1);
  90. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  91. this.panel2.Location = new System.Drawing.Point(0, 44);
  92. this.panel2.Name = "panel2";
  93. this.panel2.Size = new System.Drawing.Size(784, 517);
  94. this.panel2.TabIndex = 3;
  95. //
  96. // LibraryViewer
  97. //
  98. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  99. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  100. this.ClientSize = new System.Drawing.Size(784, 561);
  101. this.Controls.Add(this.panel2);
  102. this.Controls.Add(this.panel1);
  103. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  104. this.Name = "LibraryViewer";
  105. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  106. this.Text = "Library Explorer";
  107. this.panel1.ResumeLayout(false);
  108. this.panel1.PerformLayout();
  109. this.panel2.ResumeLayout(false);
  110. this.panel2.PerformLayout();
  111. this.ResumeLayout(false);
  112. }
  113. #endregion
  114. private System.Windows.Forms.TreeView treeView1;
  115. private System.Windows.Forms.TextBox txtJson;
  116. private System.Windows.Forms.Panel panel1;
  117. private System.Windows.Forms.ComboBox selectUser;
  118. private System.Windows.Forms.Label lblType;
  119. private System.Windows.Forms.Panel panel2;
  120. }
  121. }