gpt4 book ai didi

c# - WPF MVVM,按钮单击时递增和递减 Datagrid 单元格值

转载 作者:行者123 更新时间:2023-12-03 10:26:08 25 4
gpt4 key购买 nike

enter image description here

当我单击加号按钮并减少减号按钮时如何增加单元格值

public class ProductModel
{
public decimal Product_Quantity { get; set; }
...

View 模型中的可观察集合
private ObservableCollection<ProductModel> mProducts;
public ObservableCollection<ProductModel> Products
{
get { return mProducts; }
set { mProducts= value; }
}

选定行
 private ProductModel mSelectedRow;
public ProductModel SelectedRow
{
get => mSelectedRow;
set
{
mSelectedRow = value;
OnPropertyChanged("SelectedRow");
}
}

数据网格绑定(bind)
ItemsSource="{Binding Products}"
SelectedItem="{Binding SelectedRow}"

这是我的 DataGridTextColumn 我想在其中显示更新的值
<DataGridTextColumn
Width="auto"
MinWidth="50"
Binding="{Binding Product_Quantity}"
ElementStyle="{StaticResource BlockDataGridTextColumn}"
Header="Quantity"/>

最后
private ICommand mIncrementCommand;
public ICommand IncrementCommand
{
get
{
if (mIncrementCommand == null)
{
mIncrementCommand = new DelegateCommand(delegate ()
{
// logic goes here
});
}
return mIncrementCommand;
}
}

更新了,我想要下面的东西
private ICommand mIncrementCommand;
public ICommand IncrementCommand
{
get
{
if (mIncrementCommand == null)
{
mIncrementCommand = new DelegateCommand(delegate ()
{
SelectedRow.Product_Quantity++;
});
}
return mIncrementCommand;
}
}

解决了,谢谢 Rahul Agarwal
public class ProductModel : BaseViewModel
{
public decimal Product_Quantity { get; set; }
...

我忘了实现 INotifyPropertyChanged

最佳答案

您需要将 '+' 和 '-' 按钮与 ICommand 绑定(bind)ProductModel 中的基本属性类(class)。像这样说:

public ICommand IncrementCommand{ /* provide ICommand execute implementation*/}
public ICommand DecrementCommand{ /* provide ICommand execute implementation*/}

您的 execute ICommand 实现的方法应该负责从 Product_Quantity 添加/删除.为了反射(reflect)在结果网格中, Product_Quantity还需要通知 - 因此您的 ProductModel还应该执行 INotifyPropertyChanged
尽管从您的代码中看不出来,但您需要拥有这些 ICommand ProductModel 中的实现类而不是主视图模型,因为 itemtemplate 的数据上下文(每行) itemcontrolProductModel

关于c# - WPF MVVM,按钮单击时递增和递减 Datagrid 单元格值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49346195/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com