views:

154

answers:

2

Hi all, Been thinking about this for hours now. Im building a simple slideshow application, where the user creates slides through a web application and publishes them to a wpf "player". The user is allowed to create two types of slides one based on html and one based on xaml (thought this would be easy).

When i get the slide to the player i have to determine how to render/load the slide. The HTML slide i convert to xaml (code i found on msdn) as a flowdocument (but now what to do with it?). The Xaml i just get in "raw" xaml.

My plan is to convert both of these to xaml, then have the slide load the xaml in someway and display it, but how? And would this setup be the proper architecture? please bear in mind that this is a small player application.

Any help on either architecture or on how to display these are highly appreciated.

Sincerely,

Brian

A: 

Why not just display them in the web page? There are a huge number of slideshow applications for the web already.

Jay
I want to do something visually cool, and be able to play movies, show static text, show images, touch screens (eventually). I just feel like the html browser approach isnt sufficient (did a player that way for the prorotype)
H4mm3rHead
A: 

Look at the Slide.Show project from Vertigo. It a WPF project released under codeplex. It may give you ideas on the design.

decasteljau