First time here? You are looking at the most recent posts. You may also want to check out
older archives.
Please
leave a comment, ask a question and consider
subscribing to the latest posts via RSS or
email. Thank you for visiting!
Advertisement
You are looking at a partial list of posts.
Please
leave a comment, ask a question and consider
subscribing to the latest posts via RSS or
email. Thank you for visiting! Below is a list of entries related to:
autocompletebox.
My site contains more than just the information below and I'd encourage you to visit the
home page to view
current information as well as other items/categories that might be of interest.
There are 3 entries for the tag
autocompletebox
This is part 5 in a series on getting started with Silverlight. To view the index to the series click here. You can download the completed project files for this sample application in C# or Visual Basic. In our previous step we added better data binding and saved some data to our isolated storage area. Let’s start integrating some other controls to make our experience a little better. AutoCompleteBox Remember the history data we save every time a search term is used? Let’s help our users search better, by providing them a history of their searches in...
Sometimes I think reading materials get overlooked in SDKs and we miss some hidden gems. One such gem I’d like to bring to your attention is the ability to add some subtle styling to an AutoCompleteBox from the Silverlight Toolkit to provide you with a cheap version of an editable ComboBox. Sure Silverlight 2 has a ComboBox as part of the core controls now, but as I’ve previously noted, the ComboBox in current form exhibits only DropDownList behaviors. I’m sure this will likely change with future versions, but if you have a need for an editable ComboBox feel, here’s...
The other day I wrote a simple little Silverlight application using a DataGrid to help navigate the TechEd DVD contents. My code was admittedly quick and dirty. I loaded up some data, and based on some events re-filtered and re-bound that data. After thinking about it I am not sure why I didn’t just use some existing controls to help me do that work. I found that AutoCompleteBox from the new Silverlight Toolkit would do this for me.
One thing that the AutoCompleteBox does quickly is provide filtering for simple string data. But what about custom types? My data in the...