Click here to Skip to main content
15,905,028 members
Home / Discussions / WPF
   

WPF

 
QuestionAny way to copy / clone XAML resources? Pin
SledgeHammer0124-Jun-11 18:17
SledgeHammer0124-Jun-11 18:17 
AnswerRe: Any way to copy / clone XAML resources? Pin
SledgeHammer0124-Jun-11 18:30
SledgeHammer0124-Jun-11 18:30 
AnswerRe: Any way to copy / clone XAML resources? Pin
Mark Salsbery24-Jun-11 18:35
Mark Salsbery24-Jun-11 18:35 
GeneralRe: Any way to copy / clone XAML resources? Pin
SledgeHammer0124-Jun-11 18:56
SledgeHammer0124-Jun-11 18:56 
GeneralRe: Any way to copy / clone XAML resources? Pin
Mark Salsbery24-Jun-11 19:00
Mark Salsbery24-Jun-11 19:00 
GeneralRe: Any way to copy / clone XAML resources? Pin
SledgeHammer0124-Jun-11 19:21
SledgeHammer0124-Jun-11 19:21 
AnswerRe: Any way to copy / clone XAML resources? Pin
Abhinav S26-Jun-11 7:24
Abhinav S26-Jun-11 7:24 
QuestionHow to delete a row from a datagrid based upon a value from another in WPF Pin
Member 297299224-Jun-11 11:28
Member 297299224-Jun-11 11:28 
AnswerRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Abhinav S26-Jun-11 7:28
Abhinav S26-Jun-11 7:28 
GeneralRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Member 297299227-Jun-11 1:18
Member 297299227-Jun-11 1:18 
GeneralRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Abhinav S27-Jun-11 6:54
Abhinav S27-Jun-11 6:54 
AnswerRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Mycroft Holmes26-Jun-11 12:17
professionalMycroft Holmes26-Jun-11 12:17 
GeneralRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Member 297299227-Jun-11 1:20
Member 297299227-Jun-11 1:20 
GeneralRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Mycroft Holmes27-Jun-11 2:52
professionalMycroft Holmes27-Jun-11 2:52 
QuestionMVVM: best way to wire up this Command scenario? Pin
SledgeHammer0124-Jun-11 10:29
SledgeHammer0124-Jun-11 10:29 
AnswerRe: MVVM: best way to wire up this Command scenario? Pin
Pete O'Hanlon24-Jun-11 10:37
mvePete O'Hanlon24-Jun-11 10:37 
GeneralRe: MVVM: best way to wire up this Command scenario? Pin
SledgeHammer0124-Jun-11 10:42
SledgeHammer0124-Jun-11 10:42 
QuestionProblem with WPF and removing a row from a datagrid Pin
Member 297299224-Jun-11 10:05
Member 297299224-Jun-11 10:05 
QuestionSearching for a common base class for StackPanel and Control Pin
cethie23-Jun-11 22:15
cethie23-Jun-11 22:15 
AnswerRe: Searching for a common base class for StackPanel and Control Pin
Pete O'Hanlon23-Jun-11 22:51
mvePete O'Hanlon23-Jun-11 22:51 
AnswerRe: Searching for a common base class for StackPanel and Control Pin
Abhinav S23-Jun-11 23:44
Abhinav S23-Jun-11 23:44 
AnswerRe: Searching for a common base class for StackPanel and Control Pin
Mark Salsbery24-Jun-11 5:58
Mark Salsbery24-Jun-11 5:58 
QuestionWPF MVVM ListBox Basics Pin
Member 450279423-Jun-11 2:13
Member 450279423-Jun-11 2:13 
AnswerRe: WPF MVVM ListBox Basics Pin
SledgeHammer0123-Jun-11 9:55
SledgeHammer0123-Jun-11 9:55 
GeneralRe: WPF MVVM ListBox Basics Pin
Member 450279424-Jun-11 1:36
Member 450279424-Jun-11 1:36 
Hi thanks for your reply

Yes my post is too long and I did read the posting guidelines before posting but how are good people like you supposed to help without all of the information?

Yes I can make the listbox look and function as I would expect a listbox to function with this.

<ListBox
ItemsSource="{Binding Path=AvailablePitchbookChartFamily}"
DisplayMemberPath="DisplayName"
>
</ListBox>


The issue is that the type OptionViewModel implements INotifyPropertyChanged. A collection of this type is bound to my Listbox. However the act of changing a selected item does not fire the PropertyChanged event and therefore doesn't update the underlying business object being modelled. I've been trying to structure the listbox in a way that it looks just like a listbox but the PropertyChanged event does fire when a listbox item is selected/deselected. My lack of WPF knowledge is currently stopping me from achieving this.

Anyway I'll keep improving my knowledge. I think I'll end up doing something with the IObservable interface.

Thanks for your help

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.