using System.ComponentModel; namespace PlumByteUI_Learn { partial class PlayerView { /// /// Required designer variable. /// private IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.vlcControl = new Vlc.DotNet.Forms.VlcControl(); this.panel1 = new System.Windows.Forms.Panel(); this.playBtn = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.vlcControl)).BeginInit(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // vlcControl // this.vlcControl.BackColor = System.Drawing.Color.Black; this.vlcControl.Dock = System.Windows.Forms.DockStyle.Top; this.vlcControl.Location = new System.Drawing.Point(0, 0); this.vlcControl.Name = "vlcControl"; this.vlcControl.Size = new System.Drawing.Size(921, 460); this.vlcControl.Spu = -1; this.vlcControl.TabIndex = 0; this.vlcControl.Text = "vlcControl1"; this.vlcControl.VlcLibDirectory = null; this.vlcControl.VlcMediaplayerOptions = null; this.vlcControl.VlcLibDirectoryNeeded += new System.EventHandler(this.vlcControl_VlcLibDirectoryNeeded); this.vlcControl.Click += new System.EventHandler(this.vlcControl_Click); // // panel1 // this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(57)))), ((int)(((byte)(75))))); this.panel1.Controls.Add(this.playBtn); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 460); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(921, 90); this.panel1.TabIndex = 1; // // playBtn // this.playBtn.Location = new System.Drawing.Point(439, 39); this.playBtn.Name = "playBtn"; this.playBtn.Size = new System.Drawing.Size(75, 23); this.playBtn.TabIndex = 0; this.playBtn.Text = "button1"; this.playBtn.UseVisualStyleBackColor = true; this.playBtn.Click += new System.EventHandler(this.playBtn_Click); // // PlayerView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.panel1); this.Controls.Add(this.vlcControl); this.Name = "PlayerView"; this.Size = new System.Drawing.Size(921, 550); this.Load += new System.EventHandler(this.PlayerView_Load); ((System.ComponentModel.ISupportInitialize)(this.vlcControl)).EndInit(); this.panel1.ResumeLayout(false); this.ResumeLayout(false); } private System.Windows.Forms.Button playBtn; private System.Windows.Forms.Panel panel1; #endregion private Vlc.DotNet.Forms.VlcControl vlcControl; } }