コード例 #1
0
ファイル: Form1.cs プロジェクト: jvorata96/QuotationApp
 private void ShowTotalPriceRaw()
 {
     currentCylinder.ComputePricePerPiece();
     currentCylinder.ComputeTotalPrice();
     TxtPricePerPiece.Text = string.Format("{0:C2}", ((Cylinder)comboBox1.SelectedItem).Price_Per_Piece);
     TxtTotalRaw.Text      = string.Format("{0:C2}", ((Cylinder)comboBox1.SelectedItem).Total);
 }