WPF : Notify model property from another view model











up vote
0
down vote

favorite












im new to WPF MVVM



i have 3 classes here (All classes have same BaseParent):



---- The Problem is ---->
Whenever i set my BaseParents GroupContent in [DPropertyViewModel], it doesnt update my ConsoleText in [DConsoleViewModel].



Model:



 public class BaseDParent
{
public string GroupType { get; set; } = "None";

public string GroupName { get; set; } = "None";

public string GroupContent
{
get => _groupcontent;
set
{
_groupcontent = value;
SetContent();
}
}
private string _groupcontent;}


ViewModel:



 public class DConsoleViewModel : DNotify
{
public BaseDParent DElement
{
get => _delement;
set
{
_delement = value;
NotifyPropertyChanged();
}
}
private BaseDParent _delement;

public string ConsoleText
{
get => DElement.GroupContent;
set
{
DElement.GroupContent = value;
NotifyPropertyChanged();
}
}}


and here is where i change my BaseParents GroupContent:



public class DPropertyViewModel : DNotify
{
public BaseDParent DElement
{
get => _delement;
set
{
_delement = value;
NotifyPropertyChanged();
}
}
private BaseDParent _delement;

public string Level { get; set; } = "0";
public string Property { get; set; } = "Property";
public string Value { get; set; } = "-Null-";

public void SetDElementPropertyValue()
{
string startline = " " + DElement.GroupType + " " + DElement.GroupName + DHelper.NewLine();
string subpropline = DHelper.NewLine() + Level + " " + Property + " ";

int start = DElement.GroupContent.IndexOf(startline);

int propstart = DElement.GroupContent.IndexOf(subpropline, start - 3) + subpropline.Length;
int propnext = DElement.GroupContent.IndexOf(DHelper.NewLine(), propstart);
string propvalue = DElement.GroupContent.Substring(propstart, propnext - propstart);

string toremove = subpropline + propvalue + DHelper.NewLine();
int toaddindex = DElement.GroupContent.IndexOf(toremove);
DElement.GroupContent = DElement.GroupContent.RemoveSub(toremove);

string toadd = subpropline + Value + DHelper.NewLine();
DElement.GroupContent = DElement.GroupContent.Insert(toaddindex, toadd);
}
}


Thanks for your help :)










share|improve this question


























    up vote
    0
    down vote

    favorite












    im new to WPF MVVM



    i have 3 classes here (All classes have same BaseParent):



    ---- The Problem is ---->
    Whenever i set my BaseParents GroupContent in [DPropertyViewModel], it doesnt update my ConsoleText in [DConsoleViewModel].



    Model:



     public class BaseDParent
    {
    public string GroupType { get; set; } = "None";

    public string GroupName { get; set; } = "None";

    public string GroupContent
    {
    get => _groupcontent;
    set
    {
    _groupcontent = value;
    SetContent();
    }
    }
    private string _groupcontent;}


    ViewModel:



     public class DConsoleViewModel : DNotify
    {
    public BaseDParent DElement
    {
    get => _delement;
    set
    {
    _delement = value;
    NotifyPropertyChanged();
    }
    }
    private BaseDParent _delement;

    public string ConsoleText
    {
    get => DElement.GroupContent;
    set
    {
    DElement.GroupContent = value;
    NotifyPropertyChanged();
    }
    }}


    and here is where i change my BaseParents GroupContent:



    public class DPropertyViewModel : DNotify
    {
    public BaseDParent DElement
    {
    get => _delement;
    set
    {
    _delement = value;
    NotifyPropertyChanged();
    }
    }
    private BaseDParent _delement;

    public string Level { get; set; } = "0";
    public string Property { get; set; } = "Property";
    public string Value { get; set; } = "-Null-";

    public void SetDElementPropertyValue()
    {
    string startline = " " + DElement.GroupType + " " + DElement.GroupName + DHelper.NewLine();
    string subpropline = DHelper.NewLine() + Level + " " + Property + " ";

    int start = DElement.GroupContent.IndexOf(startline);

    int propstart = DElement.GroupContent.IndexOf(subpropline, start - 3) + subpropline.Length;
    int propnext = DElement.GroupContent.IndexOf(DHelper.NewLine(), propstart);
    string propvalue = DElement.GroupContent.Substring(propstart, propnext - propstart);

    string toremove = subpropline + propvalue + DHelper.NewLine();
    int toaddindex = DElement.GroupContent.IndexOf(toremove);
    DElement.GroupContent = DElement.GroupContent.RemoveSub(toremove);

    string toadd = subpropline + Value + DHelper.NewLine();
    DElement.GroupContent = DElement.GroupContent.Insert(toaddindex, toadd);
    }
    }


    Thanks for your help :)










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      im new to WPF MVVM



      i have 3 classes here (All classes have same BaseParent):



      ---- The Problem is ---->
      Whenever i set my BaseParents GroupContent in [DPropertyViewModel], it doesnt update my ConsoleText in [DConsoleViewModel].



      Model:



       public class BaseDParent
      {
      public string GroupType { get; set; } = "None";

      public string GroupName { get; set; } = "None";

      public string GroupContent
      {
      get => _groupcontent;
      set
      {
      _groupcontent = value;
      SetContent();
      }
      }
      private string _groupcontent;}


      ViewModel:



       public class DConsoleViewModel : DNotify
      {
      public BaseDParent DElement
      {
      get => _delement;
      set
      {
      _delement = value;
      NotifyPropertyChanged();
      }
      }
      private BaseDParent _delement;

      public string ConsoleText
      {
      get => DElement.GroupContent;
      set
      {
      DElement.GroupContent = value;
      NotifyPropertyChanged();
      }
      }}


      and here is where i change my BaseParents GroupContent:



      public class DPropertyViewModel : DNotify
      {
      public BaseDParent DElement
      {
      get => _delement;
      set
      {
      _delement = value;
      NotifyPropertyChanged();
      }
      }
      private BaseDParent _delement;

      public string Level { get; set; } = "0";
      public string Property { get; set; } = "Property";
      public string Value { get; set; } = "-Null-";

      public void SetDElementPropertyValue()
      {
      string startline = " " + DElement.GroupType + " " + DElement.GroupName + DHelper.NewLine();
      string subpropline = DHelper.NewLine() + Level + " " + Property + " ";

      int start = DElement.GroupContent.IndexOf(startline);

      int propstart = DElement.GroupContent.IndexOf(subpropline, start - 3) + subpropline.Length;
      int propnext = DElement.GroupContent.IndexOf(DHelper.NewLine(), propstart);
      string propvalue = DElement.GroupContent.Substring(propstart, propnext - propstart);

      string toremove = subpropline + propvalue + DHelper.NewLine();
      int toaddindex = DElement.GroupContent.IndexOf(toremove);
      DElement.GroupContent = DElement.GroupContent.RemoveSub(toremove);

      string toadd = subpropline + Value + DHelper.NewLine();
      DElement.GroupContent = DElement.GroupContent.Insert(toaddindex, toadd);
      }
      }


      Thanks for your help :)










      share|improve this question













      im new to WPF MVVM



      i have 3 classes here (All classes have same BaseParent):



      ---- The Problem is ---->
      Whenever i set my BaseParents GroupContent in [DPropertyViewModel], it doesnt update my ConsoleText in [DConsoleViewModel].



      Model:



       public class BaseDParent
      {
      public string GroupType { get; set; } = "None";

      public string GroupName { get; set; } = "None";

      public string GroupContent
      {
      get => _groupcontent;
      set
      {
      _groupcontent = value;
      SetContent();
      }
      }
      private string _groupcontent;}


      ViewModel:



       public class DConsoleViewModel : DNotify
      {
      public BaseDParent DElement
      {
      get => _delement;
      set
      {
      _delement = value;
      NotifyPropertyChanged();
      }
      }
      private BaseDParent _delement;

      public string ConsoleText
      {
      get => DElement.GroupContent;
      set
      {
      DElement.GroupContent = value;
      NotifyPropertyChanged();
      }
      }}


      and here is where i change my BaseParents GroupContent:



      public class DPropertyViewModel : DNotify
      {
      public BaseDParent DElement
      {
      get => _delement;
      set
      {
      _delement = value;
      NotifyPropertyChanged();
      }
      }
      private BaseDParent _delement;

      public string Level { get; set; } = "0";
      public string Property { get; set; } = "Property";
      public string Value { get; set; } = "-Null-";

      public void SetDElementPropertyValue()
      {
      string startline = " " + DElement.GroupType + " " + DElement.GroupName + DHelper.NewLine();
      string subpropline = DHelper.NewLine() + Level + " " + Property + " ";

      int start = DElement.GroupContent.IndexOf(startline);

      int propstart = DElement.GroupContent.IndexOf(subpropline, start - 3) + subpropline.Length;
      int propnext = DElement.GroupContent.IndexOf(DHelper.NewLine(), propstart);
      string propvalue = DElement.GroupContent.Substring(propstart, propnext - propstart);

      string toremove = subpropline + propvalue + DHelper.NewLine();
      int toaddindex = DElement.GroupContent.IndexOf(toremove);
      DElement.GroupContent = DElement.GroupContent.RemoveSub(toremove);

      string toadd = subpropline + Value + DHelper.NewLine();
      DElement.GroupContent = DElement.GroupContent.Insert(toaddindex, toadd);
      }
      }


      Thanks for your help :)







      c# wpf mvvm






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 11 at 15:04









      Guardian

      215




      215
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted











          The INotifyPropertyChanged interface is used to notify clients, typically binding clients, that a property value has changed. - Microsoft Docs on INotifyPropertyChanged




          Your model BaseDParent is where you should be implementing INotifyPropertyChanged because this is where the values are changing, not in the ViewModel.



          You can then remove ConsoleText from your ViewModel and bind directly to BaseDParent.GroupContent for your output.



          As it currently stands, your DElement property on DConsoleViewModel is raising changes relating to the object reference itself. e.g. from null to a constructed version of BaseDParent.



          Microsoft Docs on the subject: https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.inotifypropertychanged?view=netframework-4.7.2






          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',
            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%2f53250025%2fwpf-notify-model-property-from-another-view-model%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








            up vote
            1
            down vote



            accepted











            The INotifyPropertyChanged interface is used to notify clients, typically binding clients, that a property value has changed. - Microsoft Docs on INotifyPropertyChanged




            Your model BaseDParent is where you should be implementing INotifyPropertyChanged because this is where the values are changing, not in the ViewModel.



            You can then remove ConsoleText from your ViewModel and bind directly to BaseDParent.GroupContent for your output.



            As it currently stands, your DElement property on DConsoleViewModel is raising changes relating to the object reference itself. e.g. from null to a constructed version of BaseDParent.



            Microsoft Docs on the subject: https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.inotifypropertychanged?view=netframework-4.7.2






            share|improve this answer

























              up vote
              1
              down vote



              accepted











              The INotifyPropertyChanged interface is used to notify clients, typically binding clients, that a property value has changed. - Microsoft Docs on INotifyPropertyChanged




              Your model BaseDParent is where you should be implementing INotifyPropertyChanged because this is where the values are changing, not in the ViewModel.



              You can then remove ConsoleText from your ViewModel and bind directly to BaseDParent.GroupContent for your output.



              As it currently stands, your DElement property on DConsoleViewModel is raising changes relating to the object reference itself. e.g. from null to a constructed version of BaseDParent.



              Microsoft Docs on the subject: https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.inotifypropertychanged?view=netframework-4.7.2






              share|improve this answer























                up vote
                1
                down vote



                accepted







                up vote
                1
                down vote



                accepted







                The INotifyPropertyChanged interface is used to notify clients, typically binding clients, that a property value has changed. - Microsoft Docs on INotifyPropertyChanged




                Your model BaseDParent is where you should be implementing INotifyPropertyChanged because this is where the values are changing, not in the ViewModel.



                You can then remove ConsoleText from your ViewModel and bind directly to BaseDParent.GroupContent for your output.



                As it currently stands, your DElement property on DConsoleViewModel is raising changes relating to the object reference itself. e.g. from null to a constructed version of BaseDParent.



                Microsoft Docs on the subject: https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.inotifypropertychanged?view=netframework-4.7.2






                share|improve this answer













                The INotifyPropertyChanged interface is used to notify clients, typically binding clients, that a property value has changed. - Microsoft Docs on INotifyPropertyChanged




                Your model BaseDParent is where you should be implementing INotifyPropertyChanged because this is where the values are changing, not in the ViewModel.



                You can then remove ConsoleText from your ViewModel and bind directly to BaseDParent.GroupContent for your output.



                As it currently stands, your DElement property on DConsoleViewModel is raising changes relating to the object reference itself. e.g. from null to a constructed version of BaseDParent.



                Microsoft Docs on the subject: https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.inotifypropertychanged?view=netframework-4.7.2







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 11 at 17:48









                Sirgrowns

                516




                516






























                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f53250025%2fwpf-notify-model-property-from-another-view-model%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

                    List item for chat from Array inside array React Native

                    Thiostrepton

                    Caerphilly