This commit is contained in:
test 2019-04-06 12:04:11 +02:00
parent 09e653729e
commit d430e851b4
5 changed files with 1346 additions and 1 deletions

View File

@ -28,13 +28,106 @@
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.btnPlay = new System.Windows.Forms.Button();
this.Power = new System.Windows.Forms.Button();
this.Rewind = new System.Windows.Forms.Button();
this.btnRecord = new System.Windows.Forms.Button();
this.statusLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.InitialImage")));
this.pictureBox1.Location = new System.Drawing.Point(38, 89);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(720, 239);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// btnPlay
//
this.btnPlay.BackColor = System.Drawing.Color.Transparent;
this.btnPlay.Location = new System.Drawing.Point(636, 117);
this.btnPlay.Name = "btnPlay";
this.btnPlay.Size = new System.Drawing.Size(75, 23);
this.btnPlay.TabIndex = 1;
this.btnPlay.Text = "btnPlay";
this.btnPlay.UseVisualStyleBackColor = false;
this.btnPlay.Click += new System.EventHandler(this.BtnPlay_Click);
//
// Power
//
this.Power.Location = new System.Drawing.Point(701, 249);
this.Power.Name = "Power";
this.Power.Size = new System.Drawing.Size(57, 23);
this.Power.TabIndex = 2;
this.Power.Text = "Power";
this.Power.UseVisualStyleBackColor = true;
this.Power.Click += new System.EventHandler(this.Power_Click);
//
// Rewind
//
this.Rewind.Location = new System.Drawing.Point(586, 159);
this.Rewind.Name = "Rewind";
this.Rewind.Size = new System.Drawing.Size(75, 23);
this.Rewind.TabIndex = 3;
this.Rewind.Text = "Rewind";
this.Rewind.UseVisualStyleBackColor = true;
this.Rewind.Click += new System.EventHandler(this.Rewind_Click);
//
// btnRecord
//
this.btnRecord.Location = new System.Drawing.Point(667, 157);
this.btnRecord.Name = "btnRecord";
this.btnRecord.Size = new System.Drawing.Size(76, 25);
this.btnRecord.TabIndex = 4;
this.btnRecord.Text = "Record";
this.btnRecord.UseVisualStyleBackColor = true;
this.btnRecord.Click += new System.EventHandler(this.BtnRecord_Click);
//
// statusLabel
//
this.statusLabel.AutoSize = true;
this.statusLabel.Font = new System.Drawing.Font("Arial", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.statusLabel.Location = new System.Drawing.Point(242, 230);
this.statusLabel.MinimumSize = new System.Drawing.Size(200, 50);
this.statusLabel.Name = "statusLabel";
this.statusLabel.Size = new System.Drawing.Size(291, 55);
this.statusLabel.TabIndex = 5;
this.statusLabel.Text = "Status Label";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.statusLabel);
this.Controls.Add(this.btnRecord);
this.Controls.Add(this.Rewind);
this.Controls.Add(this.Power);
this.Controls.Add(this.btnPlay);
this.Controls.Add(this.pictureBox1);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button btnPlay;
private System.Windows.Forms.Button Power;
private System.Windows.Forms.Button Rewind;
private System.Windows.Forms.Button btnRecord;
private System.Windows.Forms.Label statusLabel;
}
}

View File

@ -16,5 +16,25 @@ namespace winVCR
{
InitializeComponent();
}
private void BtnPlay_Click(object sender, EventArgs e)
{
}
private void Rewind_Click(object sender, EventArgs e)
{
}
private void BtnRecord_Click(object sender, EventArgs e)
{
}
private void Power_Click(object sender, EventArgs e)
{
}
}
}

1229
winVCR/winVCR/Form1.resx Normal file

File diff suppressed because it is too large Load Diff

BIN
winVCR/winVCR/vcr_panel.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -54,6 +54,9 @@
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>