Silverlight RIA Services and AutoCompleteBox

 

One of the controls available in the Silverlight Toolkit is the AutoCompleteBox. This represents a control that provides a text box for user input and a drop-down that contains possible matches based on the input in the text box. When this is used in conjunction with RIA Services, you have a complex solution with minimum code. Before starting you must download the Silverlight Toolkit and RIA Services July 2009 preview.

image

image

image

The file is created. A default method called GetCustomers has been created for you:

public IQueryable<Customer> GetCustomers()

{   return this.Context.Customers;  }

image

Via Silverlight RIA Services and AutoCompleteBox

Silverlight toolkit Accordion control tutorial

The Accordion control was developed by Ruurd Boeke, a member of the Silverlight team. He’s created a great set of guides on the control, I invite you to check them out:

  • Part 1 – accordion
  • Part 2 – accordion item
  • Part 3 – expandable content control
  • Part 4 – retemplating, real world example
  • Part 5 – accordion button

To get the control, download and install the latest Silverlight Toolkit release. The Accordion control is available for both Silverlight 2 and Silverlight 3 development.