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

.NET (Core and Framework)

 
QuestionMVVM Open and Close Window Problem data on memory Pin
Paolo Mazzon25-Dec-14 7:15
Paolo Mazzon25-Dec-14 7:15 
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 
Ihave make:

Model:
C#
public double Ricambi
        {
            get { return _Ricambi; }
            set { _Ricambi = value; RaisePropertyChanged("Ricambi"); }
        }

        public double Manifattura
        {
            get { return _Manifattura; }
            set { _Manifattura = value; RaisePropertyChanged("Manifattura"); }
        }

               
        public double Totale
        {
            get { return Manifattura + Ricambi; }
            set{_Totale =  value; RaisePropertyChanged("Totale"); } 
                                      
              
        }


View:

XML
<TextBox Height="24" Canvas.Left="100" TextWrapping="Wrap" Canvas.Top="246" Width="89" Text="{Binding Busta.Ricambi,Mode=TwoWay}" />
				<TextBox Height="24" Canvas.Left="100" TextWrapping="Wrap" Canvas.Top="291" Width="89" Text="{Binding Busta.Manifattura,Mode=TwoWay}"/>
                <TextBox Height="24" Canvas.Left="100" TextWrapping="Wrap" Canvas.Top="335" Width="89" Text="{Binding Busta.Totale, Mode=TwoWay}"/>



If I insert the data in the textbox Ricambi and manifattura in theory should be the Totale automatically updated but this only happens if I type some numbers. Why?
GeneralRe: MVVM add two textbox Pin
Gerry Schmitz22-Dec-14 5:44
mveGerry Schmitz22-Dec-14 5:44 
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 

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.