123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- namespace MediaBrowser.ServerApplication
- {
- partial class LibraryViewer
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LibraryViewer));
- this.treeView1 = new System.Windows.Forms.TreeView();
- this.txtJson = new System.Windows.Forms.TextBox();
- this.panel1 = new System.Windows.Forms.Panel();
- this.selectUser = new System.Windows.Forms.ComboBox();
- this.lblType = new System.Windows.Forms.Label();
- this.panel2 = new System.Windows.Forms.Panel();
- this.panel1.SuspendLayout();
- this.panel2.SuspendLayout();
- this.SuspendLayout();
- //
- // treeView1
- //
- this.treeView1.Dock = System.Windows.Forms.DockStyle.Left;
- this.treeView1.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.treeView1.Location = new System.Drawing.Point(0, 0);
- this.treeView1.Name = "treeView1";
- this.treeView1.Size = new System.Drawing.Size(260, 517);
- this.treeView1.TabIndex = 0;
- //
- // txtJson
- //
- this.txtJson.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtJson.Font = new System.Drawing.Font("Consolas", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.txtJson.Location = new System.Drawing.Point(260, 0);
- this.txtJson.Multiline = true;
- this.txtJson.Name = "txtJson";
- this.txtJson.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.txtJson.Size = new System.Drawing.Size(524, 517);
- this.txtJson.TabIndex = 1;
- //
- // panel1
- //
- this.panel1.Controls.Add(this.selectUser);
- this.panel1.Controls.Add(this.lblType);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(784, 44);
- this.panel1.TabIndex = 2;
- //
- // selectUser
- //
- this.selectUser.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.selectUser.FormattingEnabled = true;
- this.selectUser.Location = new System.Drawing.Point(12, 12);
- this.selectUser.Name = "selectUser";
- this.selectUser.Size = new System.Drawing.Size(121, 21);
- this.selectUser.TabIndex = 2;
- //
- // lblType
- //
- this.lblType.AutoSize = true;
- this.lblType.Location = new System.Drawing.Point(260, 15);
- this.lblType.Name = "lblType";
- this.lblType.Size = new System.Drawing.Size(0, 13);
- this.lblType.TabIndex = 1;
- //
- // panel2
- //
- this.panel2.Controls.Add(this.txtJson);
- this.panel2.Controls.Add(this.treeView1);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 44);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(784, 517);
- this.panel2.TabIndex = 3;
- //
- // LibraryViewer
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(784, 561);
- this.Controls.Add(this.panel2);
- this.Controls.Add(this.panel1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "LibraryViewer";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Library Explorer";
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.panel2.ResumeLayout(false);
- this.panel2.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TreeView treeView1;
- private System.Windows.Forms.TextBox txtJson;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.ComboBox selectUser;
- private System.Windows.Forms.Label lblType;
- private System.Windows.Forms.Panel panel2;
- }
- }
|