Click here to Skip to main content
15,891,567 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: context menu Pin
Pete O'Hanlon22-Feb-12 2:36
mvePete O'Hanlon22-Feb-12 2:36 
GeneralRe: context menu Pin
michaelgr122-Feb-12 2:46
michaelgr122-Feb-12 2:46 
QuestionView Refresh Problem Pin
Kevin Marois21-Feb-12 8:45
professionalKevin Marois21-Feb-12 8:45 
AnswerRe: View Refresh Problem Pin
Pete O'Hanlon21-Feb-12 8:56
mvePete O'Hanlon21-Feb-12 8:56 
GeneralRe: View Refresh Problem Pin
Kevin Marois21-Feb-12 9:05
professionalKevin Marois21-Feb-12 9:05 
GeneralRe: View Refresh Problem Pin
AspDotNetDev21-Feb-12 9:08
protectorAspDotNetDev21-Feb-12 9:08 
AnswerRe: View Refresh Problem Pin
AspDotNetDev21-Feb-12 9:10
protectorAspDotNetDev21-Feb-12 9:10 
GeneralRe: View Refresh Problem Pin
Pete O'Hanlon21-Feb-12 9:17
mvePete O'Hanlon21-Feb-12 9:17 
If a single item changes in your ProductItem object, simply call RaisePropertyChanged on that item. For instance:
C#
public string ProductName
{
  get { return productName; }
  set
  {
    if (productName == value) return;
    productName = value;
    RaisePropertyChanged("ProductName");
  }
}
If you change the whole item, simply calling RaisePropertyChanged with an empty string will force every bound property in that item to be updated in the binding.

*pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

"Mind bleach! Send me mind bleach!" - Nagy Vilmos


My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility



modified 21-Feb-12 15:38pm.

GeneralRe: View Refresh Problem Pin
AspDotNetDev21-Feb-12 9:26
protectorAspDotNetDev21-Feb-12 9:26 
GeneralRe: View Refresh Problem Pin
Pete O'Hanlon21-Feb-12 9:39
mvePete O'Hanlon21-Feb-12 9:39 
GeneralRe: View Refresh Problem Pin
Kevin Marois22-Feb-12 13:29
professionalKevin Marois22-Feb-12 13:29 
GeneralRe: View Refresh Problem Pin
Pete O'Hanlon22-Feb-12 20:07
mvePete O'Hanlon22-Feb-12 20:07 
GeneralRe: View Refresh Problem Pin
Mycroft Holmes22-Feb-12 13:14
professionalMycroft Holmes22-Feb-12 13:14 
QuestionAccelerator keys on buttons not working Pin
Bernhard Hiller21-Feb-12 1:13
Bernhard Hiller21-Feb-12 1:13 
AnswerRe: Accelerator keys on buttons not working Pin
Pete O'Hanlon21-Feb-12 1:32
mvePete O'Hanlon21-Feb-12 1:32 
GeneralRe: Accelerator keys on buttons not working Pin
Bernhard Hiller21-Feb-12 2:38
Bernhard Hiller21-Feb-12 2:38 
GeneralRe: Accelerator keys on buttons not working Pin
Pete O'Hanlon21-Feb-12 2:43
mvePete O'Hanlon21-Feb-12 2:43 
QuestionData binding to a UserControl Pin
John T.Emmatty19-Feb-12 6:05
John T.Emmatty19-Feb-12 6:05 
AnswerRe: Data binding to a UserControl Pin
Pete O'Hanlon21-Feb-12 2:53
mvePete O'Hanlon21-Feb-12 2:53 
Question901130 - Image is not displayed Pin
ilostmyid218-Feb-12 21:59
professionalilostmyid218-Feb-12 21:59 
AnswerRe: 901130 - Image is not displayed Pin
ilostmyid220-Feb-12 21:42
professionalilostmyid220-Feb-12 21:42 
AnswerRe: 901130 - Image is not displayed Pin
Pete O'Hanlon21-Feb-12 2:49
mvePete O'Hanlon21-Feb-12 2:49 
QuestionResource Dictionary Question Pin
Kevin Marois17-Feb-12 14:40
professionalKevin Marois17-Feb-12 14:40 
QuestionBest Design Approach For This App Pin
Kevin Marois15-Feb-12 14:46
professionalKevin Marois15-Feb-12 14:46 
AnswerRe: Best Design Approach For This App Pin
SledgeHammer0116-Feb-12 7:32
SledgeHammer0116-Feb-12 7:32 

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.