Click here to Skip to main content
15,891,136 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: MVVM Open and Close Window Problem data on memory Pin
Afzaal Ahmad Zeeshan9-Jan-15 20:25
professionalAfzaal Ahmad Zeeshan9-Jan-15 20:25 
GeneralRe: MVVM Open and Close Window Problem data on memory Pin
Paolo Mazzon21-Jan-15 23:19
Paolo Mazzon21-Jan-15 23:19 
QuestionHow to youtube embed video upload Pin
Member 1132453221-Dec-14 18:40
Member 1132453221-Dec-14 18:40 
SuggestionRe: How to youtube embed video upload Pin
Kornfeld Eliyahu Peter21-Dec-14 19:59
professionalKornfeld Eliyahu Peter21-Dec-14 19:59 
AnswerRe: How to youtube embed video upload Pin
syed shanu22-Dec-14 18:36
professionalsyed shanu22-Dec-14 18:36 
QuestionMVVM add two textbox Pin
Paolo Mazzon20-Dec-14 19:07
Paolo Mazzon20-Dec-14 19:07 
AnswerRe: MVVM add two textbox Pin
Paolo Mazzon21-Dec-14 4:34
Paolo Mazzon21-Dec-14 4:34 
GeneralRe: MVVM add two textbox Pin
Gerry Schmitz22-Dec-14 5:44
mveGerry Schmitz22-Dec-14 5:44 
To get "Totale" to update as the other properties change, you need to add RaisePropertyChanged("Totale") statements to both the setters for "Manifattura" and "Ricambi". e.g.
C#
public double Manifattura
        {
            get { return _Manifattura; }
            set { _Manifattura = value; 
            RaisePropertyChanged("Manifattura");
            RaisePropertyChanged("Totale"); }
        }

In this case, the "setter" in "Totale" makes no sense and contradicts the "getter".

Alternatively, set the "value" of "Totale" in BOTH the other properties: e.g.
public double Manifattura
        {
            get { return _Manifattura; }
            set { _Manifattura = value;

            RaisePropertyChanged("Manifattura");

            Totale = Manifattura + Ricambi;
        }

... and change the "getter" in "Totale" to return "value".
GeneralRe: MVVM add two textbox Pin
Paolo Mazzon25-Dec-14 7:02
Paolo Mazzon25-Dec-14 7:02 
Generalwebsite hosting Pin
Member 1132036518-Dec-14 1:43
Member 1132036518-Dec-14 1:43 
GeneralRe: website hosting Pin
syed shanu22-Dec-14 18:40
professionalsyed shanu22-Dec-14 18:40 
AnswerRe: website hosting Pin
Afzaal Ahmad Zeeshan9-Jan-15 20:22
professionalAfzaal Ahmad Zeeshan9-Jan-15 20:22 
Questionmsi commandline how to update? Pin
neodeaths13-Dec-14 21:37
neodeaths13-Dec-14 21:37 
AnswerRe: msi commandline how to update? Pin
Richard MacCutchan14-Dec-14 3:01
mveRichard MacCutchan14-Dec-14 3:01 
GeneralRe: msi commandline how to update? Pin
neodeaths14-Dec-14 3:50
neodeaths14-Dec-14 3:50 
GeneralRe: msi commandline how to update? Pin
Slalom Zhang14-Dec-14 4:44
Slalom Zhang14-Dec-14 4:44 
QuestionWinform inter-communications between apps Pin
rfresh13-Dec-14 16:09
rfresh13-Dec-14 16:09 
AnswerRe: Winform inter-communications between apps Pin
Richard MacCutchan13-Dec-14 21:21
mveRichard MacCutchan13-Dec-14 21:21 
Questioncan a msi installer in silent mode running from service have a success prompt to a user? Pin
neodeaths12-Dec-14 19:43
neodeaths12-Dec-14 19:43 
AnswerRe: can a msi installer in silent mode running from service have a success prompt to a user? Pin
Eddy Vluggen13-Dec-14 3:09
professionalEddy Vluggen13-Dec-14 3:09 
QuestionMVVM Activate Button Save Pin
Paolo Mazzon10-Dec-14 2:08
Paolo Mazzon10-Dec-14 2:08 
QuestionGet specific text inside a web table (webbrowser control) Pin
TreoNet10-Dec-14 0:25
TreoNet10-Dec-14 0:25 
GeneralRe: Get specific text inside a web table (webbrowser control) Pin
Richard MacCutchan10-Dec-14 1:00
mveRichard MacCutchan10-Dec-14 1:00 
Questionfinding all instances of exchange server on LAN Pin
JSingh_Freelancer8-Dec-14 7:48
JSingh_Freelancer8-Dec-14 7:48 
GeneralRe: finding all instances of exchange server on LAN Pin
PIEBALDconsult8-Dec-14 7:56
mvePIEBALDconsult8-Dec-14 7:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.