Click here to Skip to main content
15,889,116 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: WPF Combobox databinding Pin
babongita6-Mar-09 6:49
babongita6-Mar-09 6:49 
GeneralRe: WPF Combobox databinding Pin
ABitSmart6-Mar-09 6:56
ABitSmart6-Mar-09 6:56 
GeneralRe: WPF Combobox databinding Pin
babongita6-Mar-09 7:02
babongita6-Mar-09 7:02 
GeneralRe: WPF Combobox databinding Pin
babongita6-Mar-09 9:03
babongita6-Mar-09 9:03 
GeneralRe: WPF Combobox databinding Pin
ABitSmart6-Mar-09 17:47
ABitSmart6-Mar-09 17:47 
GeneralRe: WPF Combobox databinding Pin
ABitSmart6-Mar-09 3:05
ABitSmart6-Mar-09 3:05 
GeneralRe: WPF Combobox databinding Pin
babongita6-Mar-09 3:18
babongita6-Mar-09 3:18 
AnswerRe: WPF Combobox databinding Pin
Member 40355135-Mar-09 5:03
Member 40355135-Mar-09 5:03 
I think that you are missing the ElementName in the ItemsSource Binding. In this case the ElementName is the x:Name of your window or UserControl.

<combobox x:name="cboParameterName" xmlns:x="#unknown">
IsSynchronizedWithCurrentItem="True"
TabIndex="10"
Grid.Column="1"
Grid.ColumnSpan="4"
ItemsSource="{Binding Path=ParameterNameCollection, ElementName=UserControl, Mode=Default}"
SelectedValue="{Binding SelectedParameter.Name}"
Style="{DynamicResource BaseComboBox}">
<combobox.itemtemplate>
<datatemplate>
<textblock text="{Binding ParameterDisplayName}">



GeneralRe: WPF Combobox databinding Pin
ABitSmart5-Mar-09 5:14
ABitSmart5-Mar-09 5:14 
AnswerRe: WPF Combobox databinding Pin
babongita5-Mar-09 5:23
babongita5-Mar-09 5:23 
Question[Message Deleted] Pin
Prajeesh4-Mar-09 17:11
Prajeesh4-Mar-09 17:11 
AnswerRe: Free hand Line Pin
ABitSmart4-Mar-09 17:26
ABitSmart4-Mar-09 17:26 
Question[Message Deleted] Pin
Prajeesh4-Mar-09 17:33
Prajeesh4-Mar-09 17:33 
AnswerRe: Free hand Line Pin
ABitSmart4-Mar-09 17:52
ABitSmart4-Mar-09 17:52 
General[Message Deleted] Pin
Prajeesh4-Mar-09 18:06
Prajeesh4-Mar-09 18:06 
GeneralRe: Free hand Line Pin
ABitSmart4-Mar-09 18:23
ABitSmart4-Mar-09 18:23 
Question[Message Deleted] Pin
Prajeesh4-Mar-09 19:12
Prajeesh4-Mar-09 19:12 
AnswerRe: Free hand Line Pin
ABitSmart4-Mar-09 19:21
ABitSmart4-Mar-09 19:21 
General[Message Deleted] Pin
Prajeesh4-Mar-09 19:42
Prajeesh4-Mar-09 19:42 
GeneralRe: Free hand Line Pin
ABitSmart4-Mar-09 19:48
ABitSmart4-Mar-09 19:48 
GeneralRe: Free hand Line Pin
Pete O'Hanlon5-Mar-09 2:37
mvePete O'Hanlon5-Mar-09 2:37 
GeneralRe: Free hand Line Pin
ABitSmart5-Mar-09 2:45
ABitSmart5-Mar-09 2:45 
QuestionWPF language issue Please help very urgnet Pin
psdeepu4-Mar-09 16:51
psdeepu4-Mar-09 16:51 
AnswerRe: WPF language issue Please help very urgnet Pin
ABitSmart4-Mar-09 17:06
ABitSmart4-Mar-09 17:06 
AnswerRe: WPF language issue Please help very urgnet Pin
Wes Aday4-Mar-09 17:11
professionalWes Aday4-Mar-09 17:11 

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.