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

WPF

 
AnswerRe: How to create channel factory for Sync Wcf contract? Pin
DukeZ16-Aug-11 5:18
DukeZ16-Aug-11 5:18 
QuestionListView SelectedValue Binding issue Pin
bonkers12322-Jul-09 21:19
bonkers12322-Jul-09 21:19 
AnswerRe: ListView SelectedValue Binding issue Pin
Pete O'Hanlon22-Jul-09 21:44
mvePete O'Hanlon22-Jul-09 21:44 
GeneralRe: ListView SelectedValue Binding issue Pin
bonkers12323-Jul-09 1:25
bonkers12323-Jul-09 1:25 
GeneralRe: ListView SelectedValue Binding issue Pin
Pete O'Hanlon23-Jul-09 2:54
mvePete O'Hanlon23-Jul-09 2:54 
QuestionVirtualisation in ComboBox Pin
SriBalupalakkattu22-Jul-09 20:55
SriBalupalakkattu22-Jul-09 20:55 
AnswerRe: Virtualisation in ComboBox Pin
Michael Sync23-Jul-09 6:09
Michael Sync23-Jul-09 6:09 
GeneralRe: Virtualisation in ComboBox Pin
Jeremy Likness26-Jul-09 3:03
professionalJeremy Likness26-Jul-09 3:03 
I'd have to agree there. It's one thing to get them in the drop down, but then the user will have to select them. This sounds more like a pattern for doing a look ahead box or something similar (a text box that as you type, begins to build a partial drop down based on the text you've already entered).

If you had to do it for some reason, the key would be:

1. Use an ObservableCollection<t> when you bind to the list. This will make the control aware when the list changes.
2. Append to the list over time

That's more tricky - the async calls of course fire when done so you have the entire list and you'd still be waiting. Better would be to find a way to chunk up your calls, i.e. perhaps call alphabetically and bring back everything beginning with A, then B, etc. Then append to the list. This will make the drop down appear sooner and it will grow dynamically, but the question then becomes - is this even useful, if the user still has to wait a minute for a full drop down?

Jeremy Likness
Latest Article: Hierarchal Data Templates in Silverlight
Blog:
http://csharperimage.jeremylikness.com/

QuestionRSS using Silver light Pin
Nekkantidivya22-Jul-09 19:03
Nekkantidivya22-Jul-09 19:03 
AnswerRe: RSS using Silver light Pin
Michael Sync23-Jul-09 6:11
Michael Sync23-Jul-09 6:11 
QuestionMessage Removed Pin
22-Jul-09 4:06
professionalN_tro_P22-Jul-09 4:06 
AnswerRe: Binding Questioon Pin
Pete O'Hanlon22-Jul-09 4:34
mvePete O'Hanlon22-Jul-09 4:34 
Questionhow to get the scroll vertical and scroll horizantal for a page created in WPF Pin
Krishna Aditya22-Jul-09 4:04
Krishna Aditya22-Jul-09 4:04 
AnswerRe: how to get the scroll vertical and scroll horizantal for a page created in WPF Pin
#realJSOP22-Jul-09 4:24
mve#realJSOP22-Jul-09 4:24 
GeneralRe: how to get the scroll vertical and scroll horizantal for a page created in WPF Pin
Krishna Aditya22-Jul-09 4:29
Krishna Aditya22-Jul-09 4:29 
AnswerRe: how to get the scroll vertical and scroll horizantal for a page created in WPF Pin
Krishna Aditya22-Jul-09 4:24
Krishna Aditya22-Jul-09 4:24 
QuestionActive Directory in Silverlight Pin
GomathiR22-Jul-09 1:55
GomathiR22-Jul-09 1:55 
AnswerRe: Active Directory in Silverlight Pin
Mark Salsbery22-Jul-09 6:31
Mark Salsbery22-Jul-09 6:31 
AnswerRe: Active Directory in Silverlight Pin
Michael Sync23-Jul-09 6:15
Michael Sync23-Jul-09 6:15 
AnswerRe: Active Directory in Silverlight Pin
Jeremy Likness26-Jul-09 3:04
professionalJeremy Likness26-Jul-09 3:04 
GeneralActive Directory in Silverlight Pin
Vadluri Sreenu6-Sep-10 18:51
Vadluri Sreenu6-Sep-10 18:51 
AnswerRe: Active Directory in Silverlight Pin
Member 46389115-Dec-10 21:43
Member 46389115-Dec-10 21:43 
QuestionHow to measure cold startup time Pin
krishnan.s22-Jul-09 1:02
krishnan.s22-Jul-09 1:02 
AnswerRe: How to measure cold startup time Pin
Pete O'Hanlon22-Jul-09 1:15
mvePete O'Hanlon22-Jul-09 1:15 
GeneralRe: How to measure cold startup time Pin
krishnan.s22-Jul-09 1:24
krishnan.s22-Jul-09 1:24 

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.