gpt4 book ai didi

c# - 双向绑定(bind)问题 - PropertyChanged 和 CanExecuteChanged

转载 作者:行者123 更新时间:2023-11-30 22:30:23 26 4
gpt4 key购买 nike

我想实现当文本框值更改时,我的添加按钮可用。

我将文本框与 viewModel 绑定(bind):

<TextBox Name="nameTbx" Text="{Binding Path=NewNode.Name, Mode=TwoWay}" />

我的按钮:

<Button Content="Add" Command="{Binding Path=AddNewNodeProperty}"/>

在后面的 XAML 代码中,我将 DataContext 设置为我的 ViewModel。 View 模型看起来像:

/* code*/

private Node _newNode = new Node();
public Node NewNode
{
get
{
return _newNode;
}
set
{
_newNode = value;
OnPropertyChanged("NewNode");
}
}

private AddNode _addNewNodeProperty;
public AddNode AddNewNodeProperty
{
get
{
return _addNewNodeProperty;
}
}

在构造函数中我初始化 _addNewNodeProperty

this._addNewNodeProperty = new AddNode(this);

这是我的 AddNode 类:

public class AddNode : ICommand
{
private ServiceMapViewModel viewModel;

public AddNode(ServiceMapViewModel viewModel)
{
this.viewModel = viewModel;
this.viewModel.PropertyChanged += (s, e) =>
{
if (CanExecuteChanged != null)
{
CanExecuteChanged(this, new EventArgs());
}
};
}

public bool CanExecute(object parameter)
{
bool b = !string.IsNullOrWhiteSpace(this.viewModel.NewNode.Name);

return b;
}

public event EventHandler CanExecuteChanged;

public void Execute(object parameter)
{
this.viewModel.AddNewNode();
}
}

最后是我的 Node 类:

public class Node
{
public string Name { get; set; }

public bool? IsChecked { get; set; }

public Group Group { get; set; }

public Category Category { get; set; }

public string Metadata { get; set; }

public List<string> Children = new List<string>();

public List<string> Parents = new List<string>();
}

问题是,当我更改我的文本框文本时,NewNode 正在为我获取值,但它应该设置 .

Tnx 高级!

编辑让我补充一点:

我在屏幕上也有一个datagrid,当更改选定的项目时,我的add butom将可用。

所选项目:

<DataGrid Name="nodeDataGrid" ItemsSource="{Binding Path=MyServiceMap.Nodes}"
Background="Silver" Margin="0,34,10,10" IsReadOnly="True" SelectedItem="{Binding Path=SelectedNode}" >

和虚拟机:

private Node _selectedNode = new Node();
public Node SelectedNode
{
get
{
return _selectedNode;
}
set
{
_selectedNode = value;
OnPropertyChanged("SelectedNode");
}
}

最佳答案

您的 TextBox 绑定(bind)到 Node 对象的 Name 属性。 Name 属性在更改时不会引发 PropertyChanged 事件。只有整个 NewNode 属性会在更改时引发事件。

编辑提供建议

一种方法是创建一个 NodeViewModel 类,正如 mtaboy 所建议的那样,该类将实现 INotifyPropertyChanged 接口(interface)。您可以在 ViewModel 上创建您想要向用户公开的任何属性。您可以将 ViewModel 视为位于模型(即 Node 类)和 View (向用户显示的 UI)之间。

我建议的一项更改是将 ICommand 逻辑封装到它自己的类中。我经常使用的是 RelayCommand 类,可以在 Josh Smith 的 MVVM article 中找到它。在 MSDN 上。如果您使用该类,则可以在 ViewModel 类中定义属性或私有(private)方法,这将返回用户是否可以添加。例如,

private bool CanAddNewNode()
{
return !String.IsNullOrWhitespace(Name);
}

在实例化您的 RelayCommand 时,您可以为引用上述方法的第二个参数传递 lambda。

var saveCommand = new RelayCommand(param => SaveMethod(), param => CanAddNewNode());

您将从您的 ViewModel 公开一个 ICommand 属性,该属性将返回 RelayCommand 对象。

希望这能让您入门。

关于c# - 双向绑定(bind)问题 - PropertyChanged 和 CanExecuteChanged,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9667366/

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