Quadra

Quadra Offshore

 
  • Increase font size
  • Default font size
  • Decrease font size
Home Silverlight Image Carousel
E-mail Print PDF

Quadra Silverlight Image Carousel

We have decided to release one of our image carousel's to the public, with source code. The style, functionality, and properties are easily changeable.

Try the demo online

Download silverlight Carousel Source

For the image set for the carousel, we are sending a request to a php script using the CodeIgniter framework query a MySql database and then give us back XML (sample listed below) to parse and filter, sort with LINQ

 
<?xml version="1.0" ?> 
- <root>
-   <MachineData>
      <MachineID>1</MachineID> 
      <Price>50000.00</Price> 
      <Make>Porsche</Make> 
      <Model>930</Model> 
      <TransType>manual</TransType> 
      <HP>282</HP> 
      <Year>1986</Year> 
      <Mileage>45000</Mileage> 
      <EngineType>flat6 turbo</EngineType> 
      <CompanyID>1</CompanyID> 
      <DisplayMediaID>3</DisplayMediaID> 
      <MediaID>1</MediaID> 
      <MachineTable>Autos</MachineTable> 
      <Filename>1_1209885154_1023536386car4.jpg_or.jpg</Filename> 
      <MainImage>1</MainImage> 
      <RotatorImage>0</RotatorImage> 
      <RotatorPosition>0</RotatorPosition> 
    </MachineData>
     ... more MachineData entities ...
  </root>