wpf 绑定表达式错误:在对象上找不到属性
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/17274255/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
binding expression error: property not found on object
提问by Dinesh
I've WPFapplcation in which I usedDataBindingfor a comboBox. ProjectName from projectList should add inside my comboBox, but when I run the app, every time I get these errors;
我有一个WPF应用程序,其中我用于. projectList 中的 ProjectName 应该添加到 my 中,但是当我运行应用程序时,每次出现这些错误时;DataBindingcomboBoxcomboBox
System.Windows.Data Error: 40 : BindingExpression path error: 'projectList' property not found on 'object' ''DayView' (Name='MainWin')'. BindingExpression:Path=projectList; DataItem='DayView' (Name='MainWin'); target element is 'ComboBox' (Name=''); target property is 'ItemsSource' (type 'IEnumerable') System.Windows.Data Error: 40 : BindingExpression path error: 'selectedProjectid' property not found on 'object' ''ComboBox' (Name='')'. BindingExpression:Path=selectedProjectid; DataItem='ComboBox' (Name=''); target element is 'ComboBox' (Name=''); target property is 'SelectedValue' (type 'Object')
System.Windows.Data 错误:40:BindingExpression 路径错误:在 'object' ''DayView' (Name='MainWin')' 上找不到 'projectList' 属性。BindingExpression:Path=projectList; DataItem='DayView' (Name='MainWin'); 目标元素是 'ComboBox' (Name=''); 目标属性是“ItemsSource”(类型“IEnumerable”) System.Windows.Data 错误:40:BindingExpression 路径错误:在“object”“ComboBox”(Name='')'上找不到“selectedProjectid”属性。BindingExpression:Path=selectedProjectid; DataItem='ComboBox' (Name=''); 目标元素是 'ComboBox' (Name=''); 目标属性是“SelectedValue”(类型“对象”)
My xaml code where I use Data Binding is:
我使用数据绑定的 xaml 代码是:
<DataTemplate x:Key="EditableDataTemplate">
<StackPanel Orientation="Horizontal" Width="596">
<TextBox Text="{Binding ClientNameBinding}" Background="Yellow" Padding="0" Margin="0" BorderThickness="0" TextWrapping="Wrap" Width="145"/>
<TextBox Text="{Binding ApplicationNameBinding}" Background="Yellow" Padding="0" Margin="0" BorderThickness="0" TextWrapping="Wrap" Width="90"/>
<TextBox Text="{Binding StartTimeBinding}" Background="Yellow" Padding="0" Margin="0" BorderThickness="0" TextWrapping="Wrap" Width="100"/>
<TextBox Text="{Binding StopTimeBinding}" Background="Yellow" Padding="0" Margin="0" BorderThickness="0" TextWrapping="Wrap" Width="60"/>
<TextBox Text="{Binding TaskNameBinding}" Background="Yellow" Padding="0" Margin="0" BorderThickness="0" TextWrapping="Wrap" Width="130"/>
<ComboBox x:Name="ComboBox2" ItemsSource="{Binding Path=projectList, ElementName=MainWin}" SelectedValuePath="_id" DisplayMemberPath="_name" SelectedValue="{Binding Path=selectedProjectid}" Width="71" Background="Yellow" BorderThickness="0" DataContext="{Binding RelativeSource={RelativeSource Self}}"/>
</StackPanel>
</DataTemplate>
Code behind is:
后面的代码是:
public partial class DayView : MetroWindow
{
private DateTime currentDateForWindow;
public List<Harvest_Project> projectList;
public int selectedProjectid{get;set;}
public DayView(DateTime s)
{
InitializeComponent();
this.DataContext = projectList;
//this.RootElement.DataContext = myData;
Globals._globalController.setDayViewWindow(this);
currentDateForWindow = s;
dayDateLabel.Content = s.DayOfWeek + ", " + s.Day;
monthLabel.Content = s.ToString("MMMM");
listBox1.Items.Clear();
//projectList = Globals._globalController.harvestManager._PROJECTLIST;
Globals._globalController.fetchAndPopulateForDate(currentDateForWindow);
}
public void addHarvestEntrytoView(Harvest_TimeSheetEntry entry)
{
try
{
listBox1.Items.Add(entry);
}
catch (Exception)
{ }
}
public void addHarvestEntrytoView(List<Harvest_TimeSheetEntry> entry)
{
foreach (Harvest_TimeSheetEntry x in entry)
listBox1.Items.Add(x);
}
private void BackButton_Click(object sender, RoutedEventArgs e)
{
this.Hide();
Globals._globalController.getMonthViewWindow.Show();
}
private void StartButton_Click(object sender, RoutedEventArgs e)
{
Globals._globalController.win32Manager.startTimer();
}
private void StopButton_Click_1(object sender, RoutedEventArgs e)
{
Globals._globalController.win32Manager.stopTimer();
}
private void SyncEntry_Click(object sender, RoutedEventArgs e)
{
//Submit All unsynced Entries
}
private void ListBoxItem_MouseDoubleClick(object sender, RoutedEventArgs e)
{
//Submit clicked Entry
Harvest_TimeSheetEntry entryToPost = (Harvest_TimeSheetEntry)sender;
if (!entryToPost.isSynced)
{
//Check if something is selected in selectedProjectItem For that item
if (entryToPost.ProjectNameBinding == "Select Project")
MessageBox.Show("Please Select a Project for the Entry");
else
Globals._globalController.harvestManager.postHarvestEntry(entryToPost);
}
else
{
//Already synced.. Make a noise or something
MessageBox.Show("Already Synced;TODO Play a Sound Instead");
}
}
}
回答by blindmeis
like Chris mentioned, binding just work with public poperties. so you have to do at least:
就像克里斯提到的那样,绑定只适用于公共财产。所以你至少必须做:
public List<Harvest_Project> projectList {get;set;}
your xaml for itemssource {Binding Path=projectList, ElementName=MainWin} means that your element MainWin has a Property projectList - i think thats not what you wanted.
您的 itemssource {Binding Path=projectList, ElementName=MainWin} 的 xaml 意味着您的元素 MainWin 有一个 Property projectList - 我认为那不是您想要的。
EDIT: if you have any binding errors there are just 2 simple steps to resolve this
编辑:如果您有任何绑定错误,只需 2 个简单步骤即可解决此问题
- check your DataContext
- check your binding path
- 检查你的数据上下文
- 检查您的绑定路径
at runtime you can use Snoopfor this task.
在运行时,您可以使用Snoop执行此任务。
for your selectedProjectid binding: you expect a DataContext with a public property selectedProjectid. if this it not the case you should check your code
对于 selectedProjectid 绑定:您希望 DataContext 具有公共属性 selectedProjectid。如果不是这种情况,您应该检查您的代码
回答by MattyMerrix
I would like to add to the above. I also had a Binding error.
我想补充以上内容。我也有绑定错误。
System.Windows.Data Error: BindingExpression path error: 'GeneralInformationTopicSectionItemStyles' property not found on 'GeneralInformation.Resources.LocalizationFiles' 'GeneralInformation.Resources.LocalizationFiles' (HashCode=7180698). BindingExpression: Path='GeneralInformationTopicSectionItemStyles.ItemNameTextWithoutSectionFontWeight' DataItem='GeneralInformation.Resources.LocalizationFiles' (HashCode=7180698); target element is 'System.Windows.Controls.TextBlock' (Name=''); target property is 'FontWeight' (type 'System.Windows.FontWeight')
And I could not figure out what the problem was. In my LocalizationFiles class I had the member.
我无法弄清楚问题是什么。在我的 LocalizationFiles 类中,我有这个成员。
public static object GeneralInformationTopicSectionItemStyles;
After reading the above post, I changed this from a member to a property.
阅读完上面的帖子后,我将其从成员更改为属性。
public static object GeneralInformationTopicSectionItemStyles
{
get;
set;
}
And Voila! It worked like a charm.
瞧!它就像一个魅力。
MM
毫米
回答by Chris
This is essentially what blindmeis has already said, but I'll expand on my comment =D
这基本上是blindmeis已经说过的,但我会扩展我的评论=D
Your error: "BindingExpression path error: 'projectList' property not found on 'object' "is a result of the missing property definition on your object; in this case projectListis currently not a property (no defined accessors).
您的错误:"BindingExpression path error: 'projectList' property not found on 'object' "是您的对象上缺少属性定义的结果;在这种情况下projectList当前不是属性(没有定义的访问器)。
You should also have another public property to hold your selected item (or value depending on what you're interested in.
您还应该有另一个公共财产来保存您选择的项目(或价值取决于您感兴趣的内容。
public partial class DayView : MetroWindow
{
public List<Harvest_Project> projectList { get; set; }
public Harvest_Project selectedProject { get; set; }
// Your other code lives here.
}
Binding along these lines (with all your element names/contexts as required):
沿着这些线绑定(根据需要使用所有元素名称/上下文):
<ComboBox x:Name="ComboBox2"
ItemsSource="{Binding Path=projectList}"
SelectedItem="{Binding Path=selectedProject}" Mode=TwoWay}" />
You'll have to implement iNotifyPropertyChanged if you wish to be notified of the selectedItem changes, but that's another topic =D
如果您希望收到 selectedItem 更改的通知,则必须实施 iNotifyPropertyChanged,但这是另一个主题 =D

