Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4093532
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T19:37:48+00:00 2026-05-20T19:37:48+00:00

MyView.xaml <UserControl x:Class=CCTrayHelperWPF.View.StatusView xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml xmlns:mc=http://schemas.openxmlformats.org/markup-compatibility/2006 xmlns:d=http://schemas.microsoft.com/expression/blend/2008 mc:Ignorable=d d:DesignHeight=30 d:DesignWidth=1200> <Grid > <Label Content={Binding

  • 0

MyView.xaml

<UserControl x:Class="CCTrayHelperWPF.View.StatusView"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="30" d:DesignWidth="1200">
<Grid >
    <Label Content="{Binding Message}">
    </Label>
</Grid>

StatusViewModel .cs

 public class StatusViewModel : ViewModelBase   --> this class has inherited INotifyPropertyChanged
{
     ObservableCollection<Status> _statusData;
    public StatusViewModel()
    {
         this._statusData = new ObservableCollection<Status>();

     }

    public ObservableCollection<Status> ProjectStatus
    {
        get { return _statusData; }
    }
}

Status.cs

public class Status : ViewModelBase
    {
        private string _message;
        public string Message
        {
            get { return _message; }
            set
            {
                if (_message == value) return;
                _message = value;
                OnPropertyChanged("Message");
            }
            }
        }

In main window where I intergrated the view usercontrol giving the dataContext

MainWindow.xaml.cs

         if (!DesignerProperties.GetIsInDesignMode(this))
        {
            StatusViewModel statusModel = new StatusViewModel(controller);
            this.StatusView.DataContext = statusModel;
        }

Now my question is: Why am I seein this binding error?
Error is: BindingExpression path error: 'Message' property not found on 'object' ''StatusViewModel' (HashCode=44528608)'. BindingExpression:Path=Message; DataItem='StatusViewModel' (HashCode=44528608); target element is 'Label' (Name=''); target property is 'Content' (type 'Object')

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T19:37:48+00:00Added an answer on May 20, 2026 at 7:37 pm

    There is a lot of stuff going on here and some good responses already. As said before, the first problem is that your DataContext object type does not define a property called Message.

    The second problem is that you are trying to use a single property from an ObservableCollection. How do you intend for the Label to know which item in the collection it should be binding to?

    There is a third concern I have: why are you using a Label? Labels in WPF/SL are not the same as in WinForms and WebForms. They are heavyweight wrappers around a TextBlock that provide keyboard directionality to a target field (in other words, if the Label was FirstName you could use the keyboard to go to the related FirstNameTextBox). If all you want to do is present readonly text on the screen, use TextBlock instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following (condensed) silverlight xaml for a view / viewmodel: <UserControl x:Class=MyView>
I have two resources Dock and Undock in my View which is a UserControl(Dock.xaml),
I have a databound grid at my view (XAML) and the Itemsource points to
If ViewController 's view is set to MyView And ViewController maintains a pointer to
Say I have a simple view, MyView . If I do: SELECT * FROM
Assuming the following view model definition: public class MyObject { public string Name {
Let's pretend I have the following xaml... <UserControl.Resources> <local:ViewModel x:Name=viewModel /> <local:LoadChildrenValueConverter x:Name=valueConverter />
In my View, which is a UserControl I have a ListView which has a
Being a new to WPF/XAML/MVVM, I've got a question. In my View, I have
I have a view (MainPage.xaml) which is bound to a ViewModel. In the ViewModel

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.