Click here to Skip to main content
15,884,388 members
Home / Discussions / WPF
   

WPF

 
QuestionSingle Instance WPF App - Pass Params From Second Instance To First Instance Pin
Kevin Marois30-Jun-16 8:46
professionalKevin Marois30-Jun-16 8:46 
QuestionWPF empty tabbed dashboard example code Pin
Stephen Holdorf28-Jun-16 12:07
Stephen Holdorf28-Jun-16 12:07 
AnswerRe: WPF empty tabbed dashboard example code Pin
Pete O'Hanlon28-Jun-16 20:53
mvePete O'Hanlon28-Jun-16 20:53 
SuggestionRe: WPF empty tabbed dashboard example code Pin
Richard MacCutchan28-Jun-16 21:09
mveRichard MacCutchan28-Jun-16 21:09 
AnswerRe: WPF empty tabbed dashboard example code Pin
Gerry Schmitz1-Jul-16 5:47
mveGerry Schmitz1-Jul-16 5:47 
GeneralRe: WPF empty tabbed dashboard example code Pin
Stephen Holdorf6-Jul-16 10:11
Stephen Holdorf6-Jul-16 10:11 
QuestionRaisePropertyChanged is not being called Pin
Kevin Marois27-Jun-16 10:41
professionalKevin Marois27-Jun-16 10:41 
AnswerRe: RaisePropertyChanged is not being called Pin
Mycroft Holmes27-Jun-16 14:27
professionalMycroft Holmes27-Jun-16 14:27 
This is my base model handler - you seem to missing the assignment, caveat I have not looked at this in years!
HTML
       public void OnPropertyChanged(string propertyName)
        {
            PropertyChangedEventHandler handler = this.PropertyChanged;

<pre>
        if (handler != null)
        {
            if (propertyName != "IsDataChanged")
            { IsDataChanged = true; }

            handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }</pre>
Never underestimate the power of human stupidity
RAH

AnswerRe: RaisePropertyChanged is not being called Pin
Bernhard Hiller27-Jun-16 21:50
Bernhard Hiller27-Jun-16 21:50 
AnswerRe: RaisePropertyChanged is not being called Pin
Jacob Himes28-Jun-16 22:28
professionalJacob Himes28-Jun-16 22:28 
QuestionWPF Diagram Of Logical & Visual Trees Pin
Kevin Marois23-Jun-16 13:56
professionalKevin Marois23-Jun-16 13:56 
AnswerRe: WPF Diagram Of Logical & Visual Trees Pin
Gerry Schmitz24-Jun-16 3:53
mveGerry Schmitz24-Jun-16 3:53 
QuestionHow To Render WinForms Control In WPF Pin
Kevin Marois21-Jun-16 8:07
professionalKevin Marois21-Jun-16 8:07 
AnswerRe: How To Render WinForms Control In WPF Pin
Gerry Schmitz23-Jun-16 7:46
mveGerry Schmitz23-Jun-16 7:46 
GeneralRe: How To Render WinForms Control In WPF Pin
Kevin Marois23-Jun-16 8:28
professionalKevin Marois23-Jun-16 8:28 
GeneralRe: How To Render WinForms Control In WPF Pin
Gerry Schmitz23-Jun-16 12:42
mveGerry Schmitz23-Jun-16 12:42 
QuestionHow to Set WPF InkCanvas Drawing area Pin
Om Prakash17-Jun-16 22:24
Om Prakash17-Jun-16 22:24 
AnswerRe: How to Set WPF InkCanvas Drawing area Pin
Gerry Schmitz18-Jun-16 6:21
mveGerry Schmitz18-Jun-16 6:21 
QuestionWPF/MVVM Tabbed UI - Handle Menu Commands Pin
Kevin Marois14-Jun-16 11:54
professionalKevin Marois14-Jun-16 11:54 
AnswerRe: WPF/MVVM Tabbed UI - Handle Menu Commands Pin
Mycroft Holmes14-Jun-16 14:44
professionalMycroft Holmes14-Jun-16 14:44 
GeneralRe: WPF/MVVM Tabbed UI - Handle Menu Commands Pin
Kevin Marois14-Jun-16 15:15
professionalKevin Marois14-Jun-16 15:15 
GeneralRe: WPF/MVVM Tabbed UI - Handle Menu Commands Pin
Mycroft Holmes14-Jun-16 16:27
professionalMycroft Holmes14-Jun-16 16:27 
AnswerRe: WPF/MVVM Tabbed UI - Handle Menu Commands Pin
U. G. Leander16-Jun-16 1:34
professionalU. G. Leander16-Jun-16 1:34 
QuestionHow to Change WPF Textbox SpellCheck Language to UK English Pin
Dave M121:-)4-Jun-16 22:33
Dave M121:-)4-Jun-16 22:33 
AnswerRe: How to Change WPF Textbox SpellCheck Language to UK English Pin
Gerry Schmitz5-Jun-16 6:56
mveGerry Schmitz5-Jun-16 6: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.