diff options
Diffstat (limited to 'MediaBrowser.ServerApplication/LibraryViewer.Designer.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/LibraryViewer.Designer.cs | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/MediaBrowser.ServerApplication/LibraryViewer.Designer.cs b/MediaBrowser.ServerApplication/LibraryViewer.Designer.cs new file mode 100644 index 000000000..747afd6cf --- /dev/null +++ b/MediaBrowser.ServerApplication/LibraryViewer.Designer.cs @@ -0,0 +1,127 @@ +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; + } +}
\ No newline at end of file |
