Click here to Skip to main content
15,917,176 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: WPF auto update issue Pin
ABitSmart5-Mar-09 15:13
ABitSmart5-Mar-09 15:13 
QuestionRe: WPF auto update issue Pin
psdeepu5-Mar-09 18:42
psdeepu5-Mar-09 18:42 
QuestionSilverlight & Search Engines Pin
Miguel Barros5-Mar-09 11:26
Miguel Barros5-Mar-09 11:26 
AnswerRe: Silverlight & Search Engines Pin
johnsontroye12-Mar-09 14:07
johnsontroye12-Mar-09 14:07 
AnswerRe: Silverlight & Search Engines Pin
Braulio Dez12-Mar-09 22:59
Braulio Dez12-Mar-09 22:59 
QuestionTreeItem with right-aligned delete button Pin
Steve The Plant5-Mar-09 11:06
Steve The Plant5-Mar-09 11:06 
AnswerRe: TreeItem with right-aligned delete button Pin
ABitSmart5-Mar-09 15:27
ABitSmart5-Mar-09 15:27 
QuestionTreeView With Arbitrary Number of Child Items Pin
Steve The Plant5-Mar-09 10:59
Steve The Plant5-Mar-09 10:59 
AnswerRe: TreeView With Arbitrary Number of Child Items Pin
ABitSmart5-Mar-09 16:19
ABitSmart5-Mar-09 16:19 
QuestionUsing an xbap as a component on an aspx page Pin
Ray Cassick5-Mar-09 10:51
Ray Cassick5-Mar-09 10:51 
AnswerRe: Using an xbap as a component on an aspx page Pin
johnsontroye12-Mar-09 14:03
johnsontroye12-Mar-09 14:03 
GeneralRe: Using an xbap as a component on an aspx page Pin
Ray Cassick12-Mar-09 16:36
Ray Cassick12-Mar-09 16:36 
QuestionWPF Bind code behind to element property Pin
nikotromus115-Mar-09 9:28
nikotromus115-Mar-09 9:28 
AnswerRe: WPF Bind code behind to element property Pin
ABitSmart5-Mar-09 15:00
ABitSmart5-Mar-09 15:00 
QuestionSilverlight plugin becomes unresponsive when javascript alert popups in Chrome Pin
aatijare5-Mar-09 3:57
aatijare5-Mar-09 3:57 
QuestionWPF Combobox databinding Pin
babongita5-Mar-09 3:37
babongita5-Mar-09 3:37 
AnswerRe: WPF Combobox databinding Pin
ABitSmart5-Mar-09 4:07
ABitSmart5-Mar-09 4:07 
GeneralRe: WPF Combobox databinding Pin
babongita5-Mar-09 5:20
babongita5-Mar-09 5:20 
GeneralRe: WPF Combobox databinding Pin
ABitSmart5-Mar-09 5:23
ABitSmart5-Mar-09 5:23 
GeneralRe: WPF Combobox databinding Pin
babongita5-Mar-09 5:40
babongita5-Mar-09 5:40 
GeneralRe: WPF Combobox databinding Pin
ABitSmart5-Mar-09 5:57
ABitSmart5-Mar-09 5:57 
GeneralRe: WPF Combobox databinding Pin
babongita5-Mar-09 6:11
babongita5-Mar-09 6:11 
GeneralRe: WPF Combobox databinding Pin
ABitSmart5-Mar-09 16:47
ABitSmart5-Mar-09 16:47 
GeneralRe: WPF Combobox databinding Pin
babongita6-Mar-09 2:26
babongita6-Mar-09 2:26 
GeneralRe: WPF Combobox databinding Pin
ABitSmart6-Mar-09 3:15
ABitSmart6-Mar-09 3:15 
babongita wrote:
SelectedValue="{Binding SelectedParameter.Name, Mode=TwoWay}"

and
babongita wrote:
<TextBlock Text="{Binding ParameterDisplayName}"/>

I guess both of these are bound to the Parameter object. Was just curious to know if these are two different properties or a typo ? Cause your textbox is bound to a property names "ScreenLabel", which I think is the display label.


babongita wrote:
Then the Parameter class looks like the following
has a Name (of Type ParameterName)

In your description, you say, Name is of type "ParameterName". So then, I suspect this,
SelectedValue="{Binding SelectedParameter.Name, Mode=TwoWay}"

Here you are binding to SelectedParameter.Name where Name is of type ParamterName. The binding will fail since it is not binding to a string type.

If you open your output window in the solution explorer (assuming you are using VS) you would be able to see binding failure messages logged.

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.