c#練習四單元總結
test4-1
在numericUpDown1中
trackBar1.Value =(int) numericUpDown1.Value;
在trackBar1中
numericUpDown1.Value = trackBar1.Value;
test4-2
在紅綠藍按鈕裏執行語句
this.BackColor = Color.FromArgb(hScrollBar1.Value, hScrollBar2.Value, hScrollBar3.Value);
實現窗體背景顏色轉變
test4-3與test4-2類似
test4-4
this.ForeColor = Color.FromArgb(hScrollBar1.Value, hScrollBar2.Value, hScrollBar3.Value);
實現窗體前景顏色的改變
test4-5余test4-4類似
test4-6
在trackBar1中
progressBar1.Value =trackBar1.Value ;
this.Opacity = 0.5 + (double)trackBar1.Value / 100;
實現窗體透明度的變化
test4-7
在combox1中實現
switch(comboBox1.SelectedIndex)
{
case 0: radioButton1.Checked = true; break;
case 1: radioButton2.Checked = true; break;
case 2: radioButton3.Checked = true; break;
}
在radioButton1中
if (radioButton1.Checked == true)
comboBox1.SelectedIndex = 0;
radioButton2與3中類似
以此實現combox選擇項與radiobutton的同步;
test4-8類似於test4-7
test4-9
在checkBox1中
if (checkBox1.Checked == true)
listBox1.Items.Add("English");
else
listBox1.Items.Remove("English");
在checkBox1與3中與checkbox1類似
實現同過CheckBox復選向listbox添加或刪除東西
test4-10
在domainUpDown1中
listBox1.SelectedIndex = domainUpDown1.SelectedIndex;
在listBox1中
domainUpDown1.SelectedIndex = listBox1.SelectedIndex;
實現同步
c#練習四單元總結