Click here to Skip to main content
15,915,869 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: WPF Datagrid itemsource:This works but is it the best way ? plz Pin
prubyholl24-Aug-09 0:11
professionalprubyholl24-Aug-09 0:11 
GeneralRe: WPF Datagrid itemsource:This works but is it the best way ? plz Pin
prubyholl24-Aug-09 1:06
professionalprubyholl24-Aug-09 1:06 
GeneralRe: WPF Datagrid itemsource:This works but is it the best way ? plz Pin
Richard MacCutchan31-Aug-09 5:05
mveRichard MacCutchan31-Aug-09 5:05 
GeneralRe: WPF Datagrid itemsource:This works but is it the best way ? plz Pin
prubyholl31-Aug-09 6:03
professionalprubyholl31-Aug-09 6:03 
QuestionStrange Compile error , my Project Assemby cannot be found Pin
cppwxwidgetsss22-Aug-09 19:42
cppwxwidgetsss22-Aug-09 19:42 
AnswerRe: Strange Compile error , my Project Assemby cannot be found Pin
Richard MacCutchan31-Aug-09 5:13
mveRichard MacCutchan31-Aug-09 5:13 
QuestionProblem setting dialogresult in WPF [SOLVED] Pin
michmela4422-Aug-09 19:08
michmela4422-Aug-09 19:08 
AnswerRe: Problem setting dialogresult in WPF Pin
AspDotNetDev22-Aug-09 22:02
protectorAspDotNetDev22-Aug-09 22:02 
Can you show the definition for DialogResult? Off the top of my head, I'd guess that you have something like this:

C#
private bool m_dialogResult;
public bool DialogResult
{
 get
 {
  return this.m_dialogResult;
 }
 set
 {
  // Error here. You never actually set this.m_dialogResult;
 }
}


But that is really just a wild guess. Also, if you could post the link to the MSDN example you are attempting to follow, that would be of use as well. That way, I can, for example, determine if DialogResult is implemented by you or by some other class that you inherit from.

Also, it depends on where you are putting your breakpoint. Is this.DialogResult = true; actually getting called? Or, is ValidateWindow() returning false and, therefore, preventing DialogResult from ever getting set?

Visual Studio is an excellent GUIIDE.

GeneralRe: Problem setting dialogresult in WPF Pin
michmela4423-Aug-09 6:28
michmela4423-Aug-09 6:28 
AnswerRe: Problem setting dialogresult in WPF Pin
AspDotNetDev23-Aug-09 15:15
protectorAspDotNetDev23-Aug-09 15:15 
GeneralRe: Problem setting dialogresult in WPF Pin
michmela4423-Aug-09 15:52
michmela4423-Aug-09 15:52 
GeneralRe: Problem setting dialogresult in WPF Pin
AspDotNetDev23-Aug-09 16:03
protectorAspDotNetDev23-Aug-09 16:03 
GeneralRe: Problem setting dialogresult in WPF Pin
michmela4423-Aug-09 16:14
michmela4423-Aug-09 16:14 
AnswerRe: Problem setting dialogresult in WPF Pin
michmela4423-Aug-09 16:36
michmela4423-Aug-09 16:36 
GeneralRe: Problem setting dialogresult in WPF Pin
AspDotNetDev23-Aug-09 17:00
protectorAspDotNetDev23-Aug-09 17:00 
QuestionWpf listbox select item [modified] Pin
mark011222-Aug-09 4:43
mark011222-Aug-09 4:43 
AnswerRe: Wpf listbox select item Pin
User 27100922-Aug-09 5:11
User 27100922-Aug-09 5:11 
AnswerRe: Wpf listbox select item Pin
mark011222-Aug-09 6:32
mark011222-Aug-09 6:32 
GeneralRe: Wpf listbox select item Pin
Christian Graus22-Aug-09 14:25
protectorChristian Graus22-Aug-09 14:25 
GeneralRe: Wpf listbox select item [modified] Pin
mark011222-Aug-09 15:10
mark011222-Aug-09 15:10 
GeneralRe: Wpf listbox select item Pin
AspDotNetDev22-Aug-09 22:44
protectorAspDotNetDev22-Aug-09 22:44 
QuestionEditing multiple item types in the same control Pin
gantww21-Aug-09 16:43
gantww21-Aug-09 16:43 
AnswerRe: Editing multiple item types in the same control Pin
Mark Salsbery24-Aug-09 8:43
Mark Salsbery24-Aug-09 8:43 
QuestionFire EventTrigger on WPF Style Change? [SOLVED] Pin
AspDotNetDev21-Aug-09 11:20
protectorAspDotNetDev21-Aug-09 11:20 
AnswerRe: Fire EventTrigger on WPF Style Change? Pin
User 27100922-Aug-09 5:10
User 27100922-Aug-09 5:10 

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.