C#代码更改为WPF

C#代码更改为WPF

本文介绍了如何将Windows C#代码更改为WPF C#代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,我有问题,如何将此代码转换为wpf c#code.please帮我me.thanks提前





hello everyone i have problem in that how to convert this code to wpf c# code.please help me.thanks in advance


foreach (DataGridViewRow row in dgvQuotionitem.Rows)
               {
                   row.Cells[3].Value = Convert.ToDecimal(row.Cells[1].Value) * Convert.ToDecimal(row.Cells[2].Value);
                   decimal discper = (Convert.ToDecimal(row.Cells[3].Value) / 100) * Convert.ToDecimal(row.Cells[4].Value);
                   row.Cells[5].Value = Convert.ToDecimal(row.Cells[3].Value) - discper;
                   txtTotalcost.Text = Convert.ToString(Convert.ToDecimal(txtTotalcost.Text) + Convert.ToDecimal(row.Cells[5].Value));
               }





我的尝试:



i发现foreach(dgvQuotation.Columns中的DataGridColumn列)

其他代码我不知道该怎么做



What I have tried:

i found that foreach (DataGridColumn column in dgvQuotation.Columns)
other code i dont know how to do

推荐答案


这篇关于如何将Windows C#代码更改为WPF C#代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 08:00