events in WFA01

This commit is contained in:
test
2019-04-06 13:34:30 +02:00
parent d430e851b4
commit 1a44661209
20 changed files with 314 additions and 51 deletions

View File

@ -35,6 +35,8 @@
this.Rewind = new System.Windows.Forms.Button();
this.btnRecord = new System.Windows.Forms.Button();
this.statusLabel = new System.Windows.Forms.Label();
this.btnInsertTape = new System.Windows.Forms.Button();
this.btnEjectTape = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
@ -100,11 +102,33 @@
this.statusLabel.TabIndex = 5;
this.statusLabel.Text = "Status Label";
//
// btnInsertTape
//
this.btnInsertTape.Location = new System.Drawing.Point(201, 117);
this.btnInsertTape.Name = "btnInsertTape";
this.btnInsertTape.Size = new System.Drawing.Size(99, 44);
this.btnInsertTape.TabIndex = 6;
this.btnInsertTape.Text = "Insert Tape";
this.btnInsertTape.UseVisualStyleBackColor = true;
this.btnInsertTape.Click += new System.EventHandler(this.BtnInsertTape_Click);
//
// btnEjectTape
//
this.btnEjectTape.Location = new System.Drawing.Point(451, 117);
this.btnEjectTape.Name = "btnEjectTape";
this.btnEjectTape.Size = new System.Drawing.Size(99, 44);
this.btnEjectTape.TabIndex = 7;
this.btnEjectTape.Text = "Eject Tape";
this.btnEjectTape.UseVisualStyleBackColor = true;
this.btnEjectTape.Click += new System.EventHandler(this.BtnEjectTape_Click);
//
// 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.btnEjectTape);
this.Controls.Add(this.btnInsertTape);
this.Controls.Add(this.statusLabel);
this.Controls.Add(this.btnRecord);
this.Controls.Add(this.Rewind);
@ -128,6 +152,8 @@
private System.Windows.Forms.Button Rewind;
private System.Windows.Forms.Button btnRecord;
private System.Windows.Forms.Label statusLabel;
private System.Windows.Forms.Button btnInsertTape;
private System.Windows.Forms.Button btnEjectTape;
}
}

View File

@ -19,22 +19,28 @@ namespace winVCR
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)
{
}
private void BtnInsertTape_Click(object sender, EventArgs e)
{
}
private void BtnEjectTape_Click(object sender, EventArgs e)
{
}
}
}
}

View File

@ -79,11 +79,5 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VRClogic\VRClogic.vbproj">
<Project>{8be90bb5-540b-429e-85ce-7bd395f665fa}</Project>
<Name>VRClogic</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>