How to set a binding to an element that was not instantiated in XAML code












0















I´m relative new to coding and I´m working on a little project. This is what I´m trying to do:



I defined a class "MyObject" with two properties:



namespace WpfApplication2
{
public class MyObject
{
public string Property1 { get; set; }
public int Property2 { get; set; }

public MyObject() : this("", 0)
{
}

public MyObject(string p1, int p2)
{
Property1 = p1;
Property2 = p2;
}
}
}


...then instantiated two objects of this class in code:



namespace WpfApplication2
{

public partial class MainWindow : Window
{
public List<MyObject> listOfMyObject { get; set; }
public MyObject myObj1 { get; set; }
public MyObject myObj2 { get; set; }

public MainWindow()
{
InitializeComponent();
listOfMyObject = new List<MyObject>();
myObj1 = new MyObject("Hello", 1);
myObj2 = new MyObject("Bye", 2);
listOfMyObject.Add(myObj1);
listOfMyObject.Add(myObj2);
}
}
}


Now I want to bind each property of the two MyObject objects to the Content Property of a Label object. So there should be four Label objects:
- Label1 should display the value of Property1 of myObj1
- Label2 should display the value of Property2 of myObj1
- Label3 should display the value of Property1 of myObj2
- Label4 should display the value of Property2 of myObj2



I tried it this way:



<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApplication2"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525" Name="mywin">
<Grid>
<StackPanel Grid.Row="1" Orientation="Horizontal">
<StackPanel>
<Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>
<Label Name="Label2" Content="{Binding ElementName=myObj1, Path=Property2}"/>
</StackPanel>
<StackPanel>
<Label Name="Label3" Content="{Binding ElementName=myObj2, Path=Property1}"/>
<Label Name="Label4" Content="{Binding ElementName=myObj2, Path=Property2}"/>
</StackPanel>
</StackPanel>
</Grid>
</Window>


... but it doesn´t work. Please help me to understand how to use the Binding correctly!



Greetings










share|improve this question





























    0















    I´m relative new to coding and I´m working on a little project. This is what I´m trying to do:



    I defined a class "MyObject" with two properties:



    namespace WpfApplication2
    {
    public class MyObject
    {
    public string Property1 { get; set; }
    public int Property2 { get; set; }

    public MyObject() : this("", 0)
    {
    }

    public MyObject(string p1, int p2)
    {
    Property1 = p1;
    Property2 = p2;
    }
    }
    }


    ...then instantiated two objects of this class in code:



    namespace WpfApplication2
    {

    public partial class MainWindow : Window
    {
    public List<MyObject> listOfMyObject { get; set; }
    public MyObject myObj1 { get; set; }
    public MyObject myObj2 { get; set; }

    public MainWindow()
    {
    InitializeComponent();
    listOfMyObject = new List<MyObject>();
    myObj1 = new MyObject("Hello", 1);
    myObj2 = new MyObject("Bye", 2);
    listOfMyObject.Add(myObj1);
    listOfMyObject.Add(myObj2);
    }
    }
    }


    Now I want to bind each property of the two MyObject objects to the Content Property of a Label object. So there should be four Label objects:
    - Label1 should display the value of Property1 of myObj1
    - Label2 should display the value of Property2 of myObj1
    - Label3 should display the value of Property1 of myObj2
    - Label4 should display the value of Property2 of myObj2



    I tried it this way:



    <Window x:Class="WpfApplication2.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfApplication2"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525" Name="mywin">
    <Grid>
    <StackPanel Grid.Row="1" Orientation="Horizontal">
    <StackPanel>
    <Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>
    <Label Name="Label2" Content="{Binding ElementName=myObj1, Path=Property2}"/>
    </StackPanel>
    <StackPanel>
    <Label Name="Label3" Content="{Binding ElementName=myObj2, Path=Property1}"/>
    <Label Name="Label4" Content="{Binding ElementName=myObj2, Path=Property2}"/>
    </StackPanel>
    </StackPanel>
    </Grid>
    </Window>


    ... but it doesn´t work. Please help me to understand how to use the Binding correctly!



    Greetings










    share|improve this question



























      0












      0








      0








      I´m relative new to coding and I´m working on a little project. This is what I´m trying to do:



      I defined a class "MyObject" with two properties:



      namespace WpfApplication2
      {
      public class MyObject
      {
      public string Property1 { get; set; }
      public int Property2 { get; set; }

      public MyObject() : this("", 0)
      {
      }

      public MyObject(string p1, int p2)
      {
      Property1 = p1;
      Property2 = p2;
      }
      }
      }


      ...then instantiated two objects of this class in code:



      namespace WpfApplication2
      {

      public partial class MainWindow : Window
      {
      public List<MyObject> listOfMyObject { get; set; }
      public MyObject myObj1 { get; set; }
      public MyObject myObj2 { get; set; }

      public MainWindow()
      {
      InitializeComponent();
      listOfMyObject = new List<MyObject>();
      myObj1 = new MyObject("Hello", 1);
      myObj2 = new MyObject("Bye", 2);
      listOfMyObject.Add(myObj1);
      listOfMyObject.Add(myObj2);
      }
      }
      }


      Now I want to bind each property of the two MyObject objects to the Content Property of a Label object. So there should be four Label objects:
      - Label1 should display the value of Property1 of myObj1
      - Label2 should display the value of Property2 of myObj1
      - Label3 should display the value of Property1 of myObj2
      - Label4 should display the value of Property2 of myObj2



      I tried it this way:



      <Window x:Class="WpfApplication2.MainWindow"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
      xmlns:local="clr-namespace:WpfApplication2"
      mc:Ignorable="d"
      Title="MainWindow" Height="350" Width="525" Name="mywin">
      <Grid>
      <StackPanel Grid.Row="1" Orientation="Horizontal">
      <StackPanel>
      <Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>
      <Label Name="Label2" Content="{Binding ElementName=myObj1, Path=Property2}"/>
      </StackPanel>
      <StackPanel>
      <Label Name="Label3" Content="{Binding ElementName=myObj2, Path=Property1}"/>
      <Label Name="Label4" Content="{Binding ElementName=myObj2, Path=Property2}"/>
      </StackPanel>
      </StackPanel>
      </Grid>
      </Window>


      ... but it doesn´t work. Please help me to understand how to use the Binding correctly!



      Greetings










      share|improve this question
















      I´m relative new to coding and I´m working on a little project. This is what I´m trying to do:



      I defined a class "MyObject" with two properties:



      namespace WpfApplication2
      {
      public class MyObject
      {
      public string Property1 { get; set; }
      public int Property2 { get; set; }

      public MyObject() : this("", 0)
      {
      }

      public MyObject(string p1, int p2)
      {
      Property1 = p1;
      Property2 = p2;
      }
      }
      }


      ...then instantiated two objects of this class in code:



      namespace WpfApplication2
      {

      public partial class MainWindow : Window
      {
      public List<MyObject> listOfMyObject { get; set; }
      public MyObject myObj1 { get; set; }
      public MyObject myObj2 { get; set; }

      public MainWindow()
      {
      InitializeComponent();
      listOfMyObject = new List<MyObject>();
      myObj1 = new MyObject("Hello", 1);
      myObj2 = new MyObject("Bye", 2);
      listOfMyObject.Add(myObj1);
      listOfMyObject.Add(myObj2);
      }
      }
      }


      Now I want to bind each property of the two MyObject objects to the Content Property of a Label object. So there should be four Label objects:
      - Label1 should display the value of Property1 of myObj1
      - Label2 should display the value of Property2 of myObj1
      - Label3 should display the value of Property1 of myObj2
      - Label4 should display the value of Property2 of myObj2



      I tried it this way:



      <Window x:Class="WpfApplication2.MainWindow"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
      xmlns:local="clr-namespace:WpfApplication2"
      mc:Ignorable="d"
      Title="MainWindow" Height="350" Width="525" Name="mywin">
      <Grid>
      <StackPanel Grid.Row="1" Orientation="Horizontal">
      <StackPanel>
      <Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>
      <Label Name="Label2" Content="{Binding ElementName=myObj1, Path=Property2}"/>
      </StackPanel>
      <StackPanel>
      <Label Name="Label3" Content="{Binding ElementName=myObj2, Path=Property1}"/>
      <Label Name="Label4" Content="{Binding ElementName=myObj2, Path=Property2}"/>
      </StackPanel>
      </StackPanel>
      </Grid>
      </Window>


      ... but it doesn´t work. Please help me to understand how to use the Binding correctly!



      Greetings







      binding






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 '18 at 16:46







      A.Steiner

















      asked Nov 21 '18 at 15:09









      A.SteinerA.Steiner

      12




      12
























          1 Answer
          1






          active

          oldest

          votes


















          0














          // Even if I already figured out how to solve my problem, I would be pleased, // if someone could answer to the question at the end of this post!



          Okay, now I figured out (with a little help from a friend), how to fix my problem:



          I set the DataContext property of the MainWindow object, that contained the Label objects to itself by doing this:



          mywin.DataContext = this;


          So the code looks like this now:



          public partial class MainWindow : Window
          {
          public List<MyObject> listOfMyObject { get; set; }

          public MyObject myObj1 { get; set; }

          public MyObject myObj2 { get; set; }


          public MainWindow()
          {
          InitializeComponent();
          listOfMyObject = new List<MyObject>();
          myObj1 = new MyObject("Hello", 1);
          myObj2 = new MyObject("Bye", 2);
          listOfMyObject.Add(myObj1);
          listOfMyObject.Add(myObj2);

          // I added this code
          mywin.DataContext = this;
          }

          }


          And then I set the binding to the Content property of the four Label objects by doing this:



          <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />


          So my whole XAML code looks like this now:



          <Window x:Class="WpfApplication2.MainWindow"
          xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
          xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
          xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
          xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
          xmlns:local="clr-namespace:WpfApplication2"
          mc:Ignorable="d"
          Title="MainWindow" Height="350" Width="525" Name="mywin">
          <Grid>
          <StackPanel Grid.Row="1" Orientation="Horizontal">
          <StackPanel>
          <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />
          <Label Name="Label2" Content="{Binding Path=myObj1.Property2}" />
          </StackPanel>
          <StackPanel>
          <Label Name="Label3" Content="{Binding Path=myObj2.Property1}" />
          <Label Name="Label4" Content="{Binding Path=myObj2.Property2}" />
          </StackPanel>
          </StackPanel>
          </Grid>
          </Window>


          NEW Question:
          Now I would like to understand, why it doesn´t work the way I tried in the first way...



          <Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>


          ... when this would work:



          <Label Name="Label1" Content="{Binding ElementName=Label2, Path=Content}"/>
          <Label Name="Label2" Content="Hello">


          The XAML code, in which the Label objects are instantiated and the C# code, in which the MyObject objects are instantiated, are both partial classes that belong together. In addition to that the MyObject objects myObj1 and myObj2 are properties of this class. So I thought that the Label-Elements in the XAML code should "know" about the MyObject objects myObj1 and myObj2 and therefore be able to reference them as source elements in the ElementName property of the Binding object. Thinking this way, I thought I must only set the Path property of the Binding object to the Property which value the Label object should display.
          Can you help me to understand, where my idea of Binding is wrong? Thank you!






          share|improve this answer

























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53415006%2fhow-to-set-a-binding-to-an-element-that-was-not-instantiated-in-xaml-code%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            // Even if I already figured out how to solve my problem, I would be pleased, // if someone could answer to the question at the end of this post!



            Okay, now I figured out (with a little help from a friend), how to fix my problem:



            I set the DataContext property of the MainWindow object, that contained the Label objects to itself by doing this:



            mywin.DataContext = this;


            So the code looks like this now:



            public partial class MainWindow : Window
            {
            public List<MyObject> listOfMyObject { get; set; }

            public MyObject myObj1 { get; set; }

            public MyObject myObj2 { get; set; }


            public MainWindow()
            {
            InitializeComponent();
            listOfMyObject = new List<MyObject>();
            myObj1 = new MyObject("Hello", 1);
            myObj2 = new MyObject("Bye", 2);
            listOfMyObject.Add(myObj1);
            listOfMyObject.Add(myObj2);

            // I added this code
            mywin.DataContext = this;
            }

            }


            And then I set the binding to the Content property of the four Label objects by doing this:



            <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />


            So my whole XAML code looks like this now:



            <Window x:Class="WpfApplication2.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
            xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
            xmlns:local="clr-namespace:WpfApplication2"
            mc:Ignorable="d"
            Title="MainWindow" Height="350" Width="525" Name="mywin">
            <Grid>
            <StackPanel Grid.Row="1" Orientation="Horizontal">
            <StackPanel>
            <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />
            <Label Name="Label2" Content="{Binding Path=myObj1.Property2}" />
            </StackPanel>
            <StackPanel>
            <Label Name="Label3" Content="{Binding Path=myObj2.Property1}" />
            <Label Name="Label4" Content="{Binding Path=myObj2.Property2}" />
            </StackPanel>
            </StackPanel>
            </Grid>
            </Window>


            NEW Question:
            Now I would like to understand, why it doesn´t work the way I tried in the first way...



            <Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>


            ... when this would work:



            <Label Name="Label1" Content="{Binding ElementName=Label2, Path=Content}"/>
            <Label Name="Label2" Content="Hello">


            The XAML code, in which the Label objects are instantiated and the C# code, in which the MyObject objects are instantiated, are both partial classes that belong together. In addition to that the MyObject objects myObj1 and myObj2 are properties of this class. So I thought that the Label-Elements in the XAML code should "know" about the MyObject objects myObj1 and myObj2 and therefore be able to reference them as source elements in the ElementName property of the Binding object. Thinking this way, I thought I must only set the Path property of the Binding object to the Property which value the Label object should display.
            Can you help me to understand, where my idea of Binding is wrong? Thank you!






            share|improve this answer






























              0














              // Even if I already figured out how to solve my problem, I would be pleased, // if someone could answer to the question at the end of this post!



              Okay, now I figured out (with a little help from a friend), how to fix my problem:



              I set the DataContext property of the MainWindow object, that contained the Label objects to itself by doing this:



              mywin.DataContext = this;


              So the code looks like this now:



              public partial class MainWindow : Window
              {
              public List<MyObject> listOfMyObject { get; set; }

              public MyObject myObj1 { get; set; }

              public MyObject myObj2 { get; set; }


              public MainWindow()
              {
              InitializeComponent();
              listOfMyObject = new List<MyObject>();
              myObj1 = new MyObject("Hello", 1);
              myObj2 = new MyObject("Bye", 2);
              listOfMyObject.Add(myObj1);
              listOfMyObject.Add(myObj2);

              // I added this code
              mywin.DataContext = this;
              }

              }


              And then I set the binding to the Content property of the four Label objects by doing this:



              <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />


              So my whole XAML code looks like this now:



              <Window x:Class="WpfApplication2.MainWindow"
              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
              xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
              xmlns:local="clr-namespace:WpfApplication2"
              mc:Ignorable="d"
              Title="MainWindow" Height="350" Width="525" Name="mywin">
              <Grid>
              <StackPanel Grid.Row="1" Orientation="Horizontal">
              <StackPanel>
              <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />
              <Label Name="Label2" Content="{Binding Path=myObj1.Property2}" />
              </StackPanel>
              <StackPanel>
              <Label Name="Label3" Content="{Binding Path=myObj2.Property1}" />
              <Label Name="Label4" Content="{Binding Path=myObj2.Property2}" />
              </StackPanel>
              </StackPanel>
              </Grid>
              </Window>


              NEW Question:
              Now I would like to understand, why it doesn´t work the way I tried in the first way...



              <Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>


              ... when this would work:



              <Label Name="Label1" Content="{Binding ElementName=Label2, Path=Content}"/>
              <Label Name="Label2" Content="Hello">


              The XAML code, in which the Label objects are instantiated and the C# code, in which the MyObject objects are instantiated, are both partial classes that belong together. In addition to that the MyObject objects myObj1 and myObj2 are properties of this class. So I thought that the Label-Elements in the XAML code should "know" about the MyObject objects myObj1 and myObj2 and therefore be able to reference them as source elements in the ElementName property of the Binding object. Thinking this way, I thought I must only set the Path property of the Binding object to the Property which value the Label object should display.
              Can you help me to understand, where my idea of Binding is wrong? Thank you!






              share|improve this answer




























                0












                0








                0







                // Even if I already figured out how to solve my problem, I would be pleased, // if someone could answer to the question at the end of this post!



                Okay, now I figured out (with a little help from a friend), how to fix my problem:



                I set the DataContext property of the MainWindow object, that contained the Label objects to itself by doing this:



                mywin.DataContext = this;


                So the code looks like this now:



                public partial class MainWindow : Window
                {
                public List<MyObject> listOfMyObject { get; set; }

                public MyObject myObj1 { get; set; }

                public MyObject myObj2 { get; set; }


                public MainWindow()
                {
                InitializeComponent();
                listOfMyObject = new List<MyObject>();
                myObj1 = new MyObject("Hello", 1);
                myObj2 = new MyObject("Bye", 2);
                listOfMyObject.Add(myObj1);
                listOfMyObject.Add(myObj2);

                // I added this code
                mywin.DataContext = this;
                }

                }


                And then I set the binding to the Content property of the four Label objects by doing this:



                <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />


                So my whole XAML code looks like this now:



                <Window x:Class="WpfApplication2.MainWindow"
                xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:local="clr-namespace:WpfApplication2"
                mc:Ignorable="d"
                Title="MainWindow" Height="350" Width="525" Name="mywin">
                <Grid>
                <StackPanel Grid.Row="1" Orientation="Horizontal">
                <StackPanel>
                <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />
                <Label Name="Label2" Content="{Binding Path=myObj1.Property2}" />
                </StackPanel>
                <StackPanel>
                <Label Name="Label3" Content="{Binding Path=myObj2.Property1}" />
                <Label Name="Label4" Content="{Binding Path=myObj2.Property2}" />
                </StackPanel>
                </StackPanel>
                </Grid>
                </Window>


                NEW Question:
                Now I would like to understand, why it doesn´t work the way I tried in the first way...



                <Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>


                ... when this would work:



                <Label Name="Label1" Content="{Binding ElementName=Label2, Path=Content}"/>
                <Label Name="Label2" Content="Hello">


                The XAML code, in which the Label objects are instantiated and the C# code, in which the MyObject objects are instantiated, are both partial classes that belong together. In addition to that the MyObject objects myObj1 and myObj2 are properties of this class. So I thought that the Label-Elements in the XAML code should "know" about the MyObject objects myObj1 and myObj2 and therefore be able to reference them as source elements in the ElementName property of the Binding object. Thinking this way, I thought I must only set the Path property of the Binding object to the Property which value the Label object should display.
                Can you help me to understand, where my idea of Binding is wrong? Thank you!






                share|improve this answer















                // Even if I already figured out how to solve my problem, I would be pleased, // if someone could answer to the question at the end of this post!



                Okay, now I figured out (with a little help from a friend), how to fix my problem:



                I set the DataContext property of the MainWindow object, that contained the Label objects to itself by doing this:



                mywin.DataContext = this;


                So the code looks like this now:



                public partial class MainWindow : Window
                {
                public List<MyObject> listOfMyObject { get; set; }

                public MyObject myObj1 { get; set; }

                public MyObject myObj2 { get; set; }


                public MainWindow()
                {
                InitializeComponent();
                listOfMyObject = new List<MyObject>();
                myObj1 = new MyObject("Hello", 1);
                myObj2 = new MyObject("Bye", 2);
                listOfMyObject.Add(myObj1);
                listOfMyObject.Add(myObj2);

                // I added this code
                mywin.DataContext = this;
                }

                }


                And then I set the binding to the Content property of the four Label objects by doing this:



                <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />


                So my whole XAML code looks like this now:



                <Window x:Class="WpfApplication2.MainWindow"
                xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:local="clr-namespace:WpfApplication2"
                mc:Ignorable="d"
                Title="MainWindow" Height="350" Width="525" Name="mywin">
                <Grid>
                <StackPanel Grid.Row="1" Orientation="Horizontal">
                <StackPanel>
                <Label Name="Label1" Content="{Binding Path=myObj1.Property1}" />
                <Label Name="Label2" Content="{Binding Path=myObj1.Property2}" />
                </StackPanel>
                <StackPanel>
                <Label Name="Label3" Content="{Binding Path=myObj2.Property1}" />
                <Label Name="Label4" Content="{Binding Path=myObj2.Property2}" />
                </StackPanel>
                </StackPanel>
                </Grid>
                </Window>


                NEW Question:
                Now I would like to understand, why it doesn´t work the way I tried in the first way...



                <Label Name="Label1" Content="{Binding ElementName=myObj1, Path=Property1}"/>


                ... when this would work:



                <Label Name="Label1" Content="{Binding ElementName=Label2, Path=Content}"/>
                <Label Name="Label2" Content="Hello">


                The XAML code, in which the Label objects are instantiated and the C# code, in which the MyObject objects are instantiated, are both partial classes that belong together. In addition to that the MyObject objects myObj1 and myObj2 are properties of this class. So I thought that the Label-Elements in the XAML code should "know" about the MyObject objects myObj1 and myObj2 and therefore be able to reference them as source elements in the ElementName property of the Binding object. Thinking this way, I thought I must only set the Path property of the Binding object to the Property which value the Label object should display.
                Can you help me to understand, where my idea of Binding is wrong? Thank you!







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 21 '18 at 17:10

























                answered Nov 21 '18 at 16:45









                A.SteinerA.Steiner

                12




                12
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53415006%2fhow-to-set-a-binding-to-an-element-that-was-not-instantiated-in-xaml-code%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?