- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我遵循了 Microsoft 网站上的几个示例,第一个涉及 ItemsSource:
ItemsControl.ItemsSource Property第二个:
How to: Implement Property Change Notification
将我得到的两个例子合并到我的例子中:
XAML
<Window x:Class="WpfSchede.Test.ItemsSourceTest"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:WpfSchede.Test"
Title="ItemsSourceTest" Height="352" Width="467">
<Window.Resources>
<c:NameList x:Key="NameListData"></c:NameList>
<DataTemplate x:Key="NameItemTemplate">
<TextBlock Width="200" Text="{Binding Path=FullName, Mode=TwoWay}" />
</DataTemplate>
</Window.Resources>
<Grid>
<ListBox ItemsSource="{Binding Source={StaticResource NameListData}}" ItemTemplate="{StaticResource NameItemTemplate}" Margin="12,12,120,65" Name="listBoxNames" IsSynchronizedWithCurrentItem="True">
</ListBox>
<Button Content="Change First Name" Height="23" HorizontalAlignment="Left" Margin="12,270,0,0" Name="buttonChangeName" VerticalAlignment="Top" Width="163" Click="buttonChangeName_Click" />
<Button Content="Change Full Name" Height="23" HorizontalAlignment="Left" Margin="193,270,0,0" Name="buttonChangeFullName" VerticalAlignment="Top" Width="163" Click="buttonChangeFullName_Click" />
</Grid>
XAML.CS
using System.Windows;
namespace WpfSchede.Test
{
public partial class ItemsSourceTest : Window
{
public ItemsSourceTest()
{
InitializeComponent();
}
private void buttonChangeName_Click(object sender, RoutedEventArgs e)
{
PersonName p = listBoxNames.SelectedItem as PersonName;
p.FirstName = "Andrew";
}
private void buttonChangeFullName_Click(object sender, RoutedEventArgs e)
{
PersonName p = listBoxNames.SelectedItem as PersonName;
p.FullName = "Andrea Rossi";
}
}
}
NameList 类
using System.Collections.ObjectModel;
using System.ComponentModel;
namespace WpfSchede.Test
{
public class NameList : ObservableCollection<PersonName>
{
public NameList()
: base()
{
Add(new PersonName("Wil", "Cath"));
Add(new PersonName("Isak", "Dinesen"));
Add(new PersonName("Victor", "Hugo"));
Add(new PersonName("Jules", "Verne"));
Add(new PersonName("Leonardo", "Rossi"));
}
}
public class PersonName : INotifyPropertyChanged
{
private string firstName;
private string lastName;
// Define the event
public event PropertyChangedEventHandler PropertyChanged;
public PersonName(string first, string last)
{
this.firstName = first;
this.lastName = last;
}
public string FirstName
{
get { return firstName; }
set {
firstName = value;
OnPropertyChanged(value);
}
}
public string LastName
{
get { return lastName; }
set { lastName = value; }
}
public string FullName
{
set {
string full = value as string;
char[] sep = { ' ' };
string[] n = full.Split(sep);
this.FirstName = n[0];
this.LastName = n[1];
OnPropertyChanged(value);
}
get { return firstName + " " + lastName; }
}
protected void OnPropertyChanged(string name)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(name));
}
}
}
}
我有两个问题。
首先)单击其中一个按钮时,我希望 ListBox 反射(reflect)更改,但什么也没有发生!我错过了什么?
第二)在 DataTemplate 中,我绑定(bind)到 FullName(为了示例的缘故,仅绑定(bind)到 FirstName 会更容易,但在我看来太简单了)。所以我选择绑定(bind)到属性 FullName,为此我在 NameList 类和 DataTemplate 代码中编写了自定义代码。我的代码有什么问题?在 DataTemplate 中指定 Mode=TwoWay 是否正确?
最佳答案
OnPropertyChanged(值);错了
它应该是 OnPropertyChanged("FirstName");并且还应该跟随OnPropertyChanged("全名");导致
OnPropertyChanged("FirstName");
OnPropertyChanged("FullName");
姓氏设置函数应该有
OnPropertyChanged("LastName");
OnPropertyChanged("FullName");
最后设置函数应该有
OnPropertyChanged("FullName");
OnPropertyChanged("FirstName");
OnPropertyChanged("LastName");
关于c# - TwoWay 绑定(bind)一个实现 INotifyPropertyChanged 的类,没有任何反应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14399404/
我正在尝试将高斯模糊添加到场景中。我正在使用此GLSL着色器:。当您提供图像作为tDiffuse纹理时,它对图像起作用,但我正在尝试将其添加为后处理效果。我试图获取摄影机的renderTarget并将
我正在做一款天气应用程序,到目前为止还不错。现在,我想通过单击按钮来呈现一些额外的信息。我有一个5天的预报,然后想显示每一天的信息。我已经成功地过滤了数据,但无法获得要渲染的数据地图。以下是我的一些代
我正在做一款天气应用程序,到目前为止还不错。现在,我想通过单击按钮来呈现一些额外的信息。我有一个5天的预报,然后想显示每一天的信息。我已经成功地过滤了数据,但无法获得要渲染的数据地图。以下是我的一些代
我在全球安装了Create Reaction应用程序。然后我就跑了。NPX创建-反应-应用JSX。它安装了大约1460个包的所有包,但没有设置Public和src文件夹。在我的JSX文件夹中,只有1:
我是一名优秀的程序员,十分优秀!