您的位置:首页 > 财经 > 产业 > 制作淘宝网页设计的代码_行程卡微信小程序入口_林云seo博客_广州网站设计专注乐云seo

制作淘宝网页设计的代码_行程卡微信小程序入口_林云seo博客_广州网站设计专注乐云seo

2025/1/8 3:04:39 来源:https://blog.csdn.net/u012269637/article/details/144892689  浏览:    关键词:制作淘宝网页设计的代码_行程卡微信小程序入口_林云seo博客_广州网站设计专注乐云seo
制作淘宝网页设计的代码_行程卡微信小程序入口_林云seo博客_广州网站设计专注乐云seo

 <c1:C1ComboBox  Width="230"  ItemsSource="{Binding ReplaceWayList}" Style="{StaticResource ListSearch-C1ComboBox}" SelectedValueChanged="C1ComboBox_SelectedValueChanged",

下拉框事件,SelectedValueChanged选中值改变事件,通过这个事件触发相关操作

 private void C1ComboBox_SelectedValueChanged(object sender, C1.WPF.PropertyChangedEventArgs<object> e)
        {
            var vm = DataContext as PlateReplaceApplyFormVM;
            if (vm == null)
            {
                return;
            }

//也可以直接通过控件名获取,但是表格中重复的时候就不能这样写ImpCouponMode就是控件名称

//  string couponMode = ImpCouponMode.Text;

//获取旧值,也可以获取新值,因为我这边要检测改变情况清空的数据,没有获取新值,只要有旧值说明之前应该选中值写过数据了,更换就需要清空
            var OldValue = e.OldValue;
            if (OldValue!=null)
            {
                vm.deleteAftrePartChange();
            }
         }

控件的触发值改变事件有三种、SelectedValueChanged、SelectedItemChanged、SelectedIndexChanged

我一般用前面两种SelectedValueChanged,可以直接获取变化的值,可以获取到新旧值,SelectedItemChanged是获取选中对象里面会有很多属性,可以将选中的对象转换为具体的对象var a = sender as C1ComboBox;就是直接转控件,通过控件的SelectedItem获取选中项,选中项在转换为具体的对象,通过属性key获取值,进行判断,也可以用于值的更改

 <c1:C1ComboBox Style="{StaticResource Grid-ComboBox-Nums}" ItemsSource="{Binding DisposalTypeList}" IsEnabled="{Binding IsEnable}"
                                       DisplayMemberPath="Value" SelectedValuePath="Key" Name="c1cbCheckoutType"
                                SelectedValue="{Binding Item.DisposalType, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True,
                                NotifyOnValidationError=True}" Width="90" SelectedItemChanged="c1cbCheckoutType_SelectedItemChanged"/>

 private void c1cbCheckoutType_SelectedItemChanged(object sender, C1.WPF.PropertyChangedEventArgs<object> e)
        {

//选中的控件项转化成枚举项对象e.NewValue到Common.StatusEnum.ComboxKeyValue
            var a = sender as C1ComboBox;
            if (null != a && a.SelectedIndex == -1) return;
            if (null != ((Common.StatusEnum.ComboxKeyValue)a.SelectedItem))
            {
                _vm = DataContext as AssetDisposalDetailFormVM;
                // 选出售显示的控件
                if (((Common.StatusEnum.ComboxKeyValue)e.NewValue).Key == "1")
                {
                    spCheckoutType.Visibility = Visibility.Visible;
                    spIsContract.Visibility = Visibility.Visible;
                    spWr.Visibility = Visibility.Visible;
                    spPhone.Visibility = Visibility.Visible;
                    lbWrName.Content = "回收商";
                }
                else
                {
                    spCheckoutType.Visibility = Visibility.Hidden;
                    spIsContract.Visibility = Visibility.Collapsed;
                    _vm.Item.TaxRate = null;
                    spWr.Visibility = Visibility.Collapsed;
                    spPhone.Visibility = Visibility.Collapsed;

                }

}

//  利用控件的值指回旧值 CbBox.SelectedItem = e.OldValue;

 var CbBox = sender as C1ComboBox;
            var newItem = e.NewValue as KeyValue;
            if (CbBox == null || newItem == null || _vm == null)
            {
                return;
            }
            if ((newItem.Key == (int)PaymentMethodEnum.Acceptance || newItem.Key == (int)PaymentMethodEnum.Check) && _vm.SupBankIsEmpty)
            {
                MessageBoxUtil.ShowWarn("该物流商无银行账号,支付方式只能选“转账”或“现金”!");
                CbBox.SelectedItem = e.OldValue;
            }

还有表格中通过点击事件获取整行数据

Click="BtnMaterialCode_Click"

private void BtnMaterialCode_Click(object sender, RoutedEventArgs e)
        {
            var vm = DataContext as StockClassParamChangeApplyFormVM;
            if (vm == null)
            {
                return;
            }
            var testInfo = CfgReviewItem.HitTest(Mouse.GetPosition(CfgReviewItem));
            if (testInfo.Row > -1)
            {
                var selectedItem = CfgReviewItem.Rows[testInfo.Row].DataItem as StockClassParamChangeDetailLogModel;
                vm.CurrentDetailItem = selectedItem;
                vm.SelectMaterialCode();
            }
        }

还有复选框的选中Checked和不选中Unchecked事件,都是同样的处理方式

  <CheckBox IsChecked="{Binding Item.IsOutward}" Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked"  Style="{StaticResource Grid-CheckBox}" Height="15" Width="20"/>

    private void CheckBox_Checked(object sender, System.Windows.RoutedEventArgs e)
        {
            var vm = DataContext as ProcedureScrapFormVM;
            if (vm == null)
            {
                return;
            }
            vm.SetOutProcedureScrapGroupList();
        }

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com