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 8924613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:28:00+00:00 2026-06-15T07:28:00+00:00

This one seems to be basic and somehow it can be duplicated but no

  • 0

This one seems to be basic and somehow it can be duplicated but no one of the answers I found on the internet made the thing work for me ..

I want to bind elements from my UI (XAML) to members of instances of classes I have.
So, lets have a simple XAML

<Window x:Class="gUSBampReader.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="601" Width="857" xmlns:my="clr-namespace:binding;assembly=binding">

   <TextBlock Name="UITextBlock"/>  <!-- THIS IS THE TEXT BOX TO BE BINDED -->

</Window>

And on the other side I have a class

public class foo
{
    objectThatImplementsINotify a; //lets say that's equivalent to an string
}

public partial class mainWindow : Window
{
    public foo externalMembers;

    public mainWindow()
    {
       externalMembers = new foo();
       //Let's show externalMembers.a in UITextBlock!
    }
}

I would like to learn how to do this binding both from XAML and from C#. Because some times external members is there and I can bind at developing time but other times is dynamic and it must be created and binded in execution time

And finally .. can you recommend a good tutorial on dataBinding with some examples ? There is a lot of stuff for XAML (but I’ve been unable to make it work). But not too much for C#.

Thanks in advance !!!

  • 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-06-15T07:28:01+00:00Added an answer on June 15, 2026 at 7:28 am

    You would need to set the DataContext of your window to itself:

    public mainWindow()
    {
       externalMembers = new foo();
       DataContext = this;
       //Let's show externalMembers.a in UITextBlock!
    }
    

    And then you need to bind the textblock:

    <TextBlock Name="UITextBlock" Text="{Binding externalMembers.a}"/>
    

    To make it work you further need to change externalMembers.a to be a property, not a field:

    public class foo
    {
        objectThatImplementsINotify a { get; set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This one seems to be a simple problem, but I can't make it work
I can't figure this one out. It seems to work in IE8+ and Firefox,
There are many questions like this but I can't find one that seems to
This seems like one of the most basic things that one might want to
So, this one seems to be a little tricky. There's an image map with
I'm having a hard time figuring this one out. Seems like no matter what
I've been pretty puzzled by this one. It seems as though my implementation of
Ok, been scratching my head on this one for a bit now... seems related
This should be easy (at least no one else seems to be having a
Hey, so this is one of those questions that seems obvious, and I'm probably

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.