Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@ private void InitializeComponent()
//
// label2
//
this.label2.Location = new System.Drawing.Point(8, 16);
this.label2.Location = new System.Drawing.Point(600, 16);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(120, 16);
this.label2.TabIndex = 5;
//
// label3
//
this.label3.Location = new System.Drawing.Point(600, 16);
this.label3.Location = new System.Drawing.Point(8, 16);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(120, 16);
this.label3.TabIndex = 6;
Expand Down Expand Up @@ -154,8 +154,8 @@ private void Form1_Load(object sender, System.EventArgs e)
private void showColorValueLabels()
{
label1.Text = "Red value is : " + trackBar1.Value.ToString();
label3.Text = "Green Value is : " + trackBar2.Value.ToString();
label2.Text = "Blue Value is : " + trackBar3.Value.ToString();
Label2.Text = "Green Value is : " + trackBar2.Value.ToString();
Label3.Text = "Blue Value is : " + trackBar3.Value.ToString();
}
private void trackBar_Scroll(object sender, System.EventArgs e)
{
Expand Down