この記事では、主に C# 単位コンバータの簡単なケースを詳しく紹介します。これは、特定の参考値を備えた簡単な winform アプリケーションです。興味のある方は参考にしてください。
数日間勉強した後、ソースを作成しました。必要に応じてコードが掲載されています。
ソフトウェア起動後のインターフェースは以下の通りです:
図に示すように、プログラムは6つのラベル、8つのコンボボックス、8つのテキストボックス、4つのボタンで構成されています。右側の 4 つのテキストボックスは、ReadOnly 属性を true に設定します。
ソフトウェアの起動時に、comboBox.SelectedIndex ステートメントを使用する必要があります (つまり、デフォルトでは項目は表示されません)。 -1 を 0 に変更します。最初の項目を表示します。フォームの Load イベントにコードを配置します。コード例:
private void MainForm_Load(object sender, EventArgs e) { comboBox1.SelectedIndex = 0; comboBox2.SelectedIndex = 1; comboBox3.SelectedIndex = 0; comboBox4.SelectedIndex = 1; comboBox5.SelectedIndex = 0; comboBox6.SelectedIndex = 1; comboBox7.SelectedIndex = 0; comboBox8.SelectedIndex = 1; }
OKボタンを押して変換関数を実行し、計算結果を文字列型に変換してtextBox.Textに代入、コード例:
private void button4_Click(object sender, EventArgs e) { string str1, str2; str1=Convert.ToString(comboBox7.SelectedItem); str2=Convert.ToString(comboBox8.SelectedItem); double d1, d2; if (textBox7.Text == "") { textBox7.Text = "1"; d1 = 1; } else d1 = Convert.ToDouble(textBox7.Text); if (str1 == str2) { d2 = d1; textBox8.Text = Convert.ToString(d2); } else { if(str1 == "摄氏度" && str2 == "华氏度") { d2=1.8*d1+32; textBox8.Text = Convert.ToString(d2); } if(str1 == "摄氏度" && str2 == "开氏度") { d2=d1+273.15; textBox8.Text = Convert.ToString(d2); } if(str1 == "华氏度" && str2 == "摄氏度") { d2=(d1-32)/1.8; textBox8.Text = Convert.ToString(d2); } if(str1 == "华氏度" && str2 == "开氏度") { d2=(d1-32)/1.8+273.15; textBox8.Text = Convert.ToString(d2); } if (str1 == "开氏度" && str2 == "摄氏度") { d2 = d1 - 273.15; textBox8.Text = Convert.ToString(d2); } if (str1 == "开氏度" && str2 == "华氏度") { d2 = (d1 - 273.15) * 1.8 + 32; textBox8.Text = Convert.ToString(d2); } } }
入力を無効にするユーザーによる数字以外の文字の入力によるプログラムエラーの発生を防ぐため、バックスペースキー、数字キー、小数点キー(温度変換の場合はマイナス記号も入力可能)以外のキーを入力してください。 keypress イベントに関連するコードを追加します。コード例:
private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar != '\b' && e.KeyChar != 46)//允许输入退格键和小数点键 { if ((e.KeyChar < '0') || (e.KeyChar > '9'))//允许输入0-9数字 { e.Handled = true; } } }
以上がC# 単位コンバータのグラフィック コードの詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。