当前位置: 首页 > article >正文

WPF-控件的属性值的类型转化

控件的属性值需要转成int、double进行运算的,可以使用一下方法

页面代码

  <StackPanel Margin="4,0,0,0" Style="{StaticResource Form-StackPanel}">
                                <Label Content="替换后材料增加金额:" Style="{StaticResource StackPanel-Label-Multiple}"/>
                                <c1:C1MaskedTextBox Style="{StaticResource StackPanel-C1MaskedTextBox-Multiple}" Text="{Binding CurrentParamReviewItem.MaterialIncreaseCost, Mode=TwoWay}" Name="MaterialIncreaseCost" Width="130" TextChanged="C1MaskedTextBox_TextChanged" />
                                <Label Content="替换后加工成本增加金额:" Style="{StaticResource StackPanel-Label-Multiple}"/>
                                <c1:C1MaskedTextBox Style="{StaticResource StackPanel-C1MaskedTextBox-Multiple}" Text="{Binding CurrentParamReviewItem.ProcessIncreaseCost, Mode=TwoWay}" Name="ProcessIncreaseCost" Width="130" TextChanged="C1MaskedTextBox_TextChanged" />
                            </StackPanel>
                          
                            <StackPanel Orientation="Horizontal">
                                <Label Content="替换后总成本变化:" Style="{StaticResource StackPanel-Label-Multiple}"/>
                                <c1:C1MaskedTextBox Style="{StaticResource StackPanel-C1MaskedTextBox-Multiple}" Text="{Binding CurrentParamReviewItem.TotalCost, Mode=TwoWay}" Name="TotalCost" Width="130" />
                              </StackPanel>

首先加入控件输入触发事件TextChanged,在对应的事件方法里面写入一下代码

 private void C1MaskedTextBox_TextChanged(object sender, System.Windows.Controls.TextChangedEventArgs e)
        {
            double? materialIncreaseCost = 0;
            double? processIncreaseCost = 0;
            if (!string.IsNullOrEmpty(MaterialIncreaseCost.Text)) {
                materialIncreaseCost = Convert.ToDouble(MaterialIncreaseCost.Text);
            }
            if (!string.IsNullOrEmpty(ProcessIncreaseCost.Text))
            {
                processIncreaseCost = Convert.ToDouble(ProcessIncreaseCost.Text);
            }
            if (!materialIncreaseCost.HasValue) {
                materialIncreaseCost = 0;
            }
            if (!processIncreaseCost.HasValue)
            {
                processIncreaseCost = 0;
            }
            double sum = materialIncreaseCost.Value + processIncreaseCost.Value;
            double roundedSum = Math.Round(sum, 2, MidpointRounding.AwayFromZero);

            // 现在你可以使用roundedSum变量了,比如更新UI或进行其他计算
            // 例如,更新另一个控件的Text属性来显示结果
            TotalCost.Text = roundedSum.ToString("N2");

        }

效果


http://www.kler.cn/a/393516.html

相关文章:

  • 【ACM出版】第四届信号处理与通信技术国际学术会议(SPCT 2024)
  • 基于碎纸片的拼接复原算法及MATLAB实现
  • Window下PHP安装最新sg11(php5.3-php8.3)
  • 区块链技术在慈善捐赠中的应用
  • Android Framework AMS(16)进程管理
  • 图像处理实验二(Image Understanding and Basic Processing)
  • CSS教程(七)- 背景
  • python语言基础-4 常用模块-4.11 OS库
  • LINUX系统中的挂载(Mounting)
  • Nuxt3
  • YoloV10改进策略:Block改进|VOLO,视觉识别中的视觉展望器|即插即用|附代码+改进方法
  • kafka 在Linux安上的装部署
  • 定时任务进行简单监控、爬虫的自动化之旅
  • LeetCode:540. 有序数组中的单一元素(二分 Java)
  • ReactPress与WordPress:两大开源发布平台的对比与选择
  • 【计算机网络】TCP网络程序
  • 【LLM学习笔记】第三篇:模型微调及LoRA介绍(附PyTorch实例)
  • 有什么好用的 WebSocket 调试工具吗?
  • Nuxt 版本 2 和 版本 3 的区别
  • LeetCode 216-组合总数Ⅲ
  • 【Qualcomm】Ubuntu20.04安装QualcommPackageManager3
  • HTML 基础架构:理解网页的骨架
  • 【Git】Git Clone 指定自定义文件夹名称:详尽指南
  • 多态之魂:C++中的优雅与力量
  • Leetcode 最后一个单词的长度
  • Clickhouse集群新建用户、授权以及remote权限问题