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 :)
c# wpf mvvm
add a comment |
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 :)
c# wpf mvvm
add a comment |
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 :)
c# wpf mvvm
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
c# wpf mvvm
asked Nov 11 at 15:04
Guardian
215
215
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Nov 11 at 17:48
Sirgrowns
516
516
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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