Click here to Skip to main content
15,901,373 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Prism, XAP and dynamic loading Pin
Michael Sync28-Jul-09 4:45
Michael Sync28-Jul-09 4:45 
QuestionHow to draw RichTextBox with mouse? Pin
Farrukhw27-Jul-09 1:13
Farrukhw27-Jul-09 1:13 
AnswerRe: How to draw RichTextBox with mouse? Pin
Christian Graus28-Jul-09 0:10
protectorChristian Graus28-Jul-09 0:10 
GeneralRe: How to draw RichTextBox with mouse? Pin
Farrukhw28-Jul-09 0:22
Farrukhw28-Jul-09 0:22 
GeneralRe: How to draw RichTextBox with mouse? Pin
Christian Graus28-Jul-09 19:27
protectorChristian Graus28-Jul-09 19:27 
QuestionImage loading Pin
#realJSOP26-Jul-09 23:58
professional#realJSOP26-Jul-09 23:58 
AnswerRe: Image loading Pin
Pete O'Hanlon27-Jul-09 2:01
mvePete O'Hanlon27-Jul-09 2:01 
GeneralRe: Image loading Pin
#realJSOP27-Jul-09 23:49
professional#realJSOP27-Jul-09 23:49 
GeneralRe: Image loading Pin
Christian Graus28-Jul-09 0:01
protectorChristian Graus28-Jul-09 0:01 
GeneralRe: Image loading Pin
Pete O'Hanlon28-Jul-09 1:41
mvePete O'Hanlon28-Jul-09 1:41 
GeneralRe: Image loading Pin
#realJSOP28-Jul-09 12:30
professional#realJSOP28-Jul-09 12:30 
GeneralRe: Image loading Pin
Pete O'Hanlon28-Jul-09 21:35
mvePete O'Hanlon28-Jul-09 21:35 
AnswerRe: Image loading Pin
Christian Graus27-Jul-09 23:33
protectorChristian Graus27-Jul-09 23:33 
GeneralRe: Image loading Pin
Jacquers28-Jul-09 0:20
Jacquers28-Jul-09 0:20 
GeneralRe: Image loading Pin
Christian Graus28-Jul-09 11:13
protectorChristian Graus28-Jul-09 11:13 
QuestionParametrize WPF code generator Pin
califax2k26-Jul-09 22:43
califax2k26-Jul-09 22:43 
QuestionCan't find System.ServiceModel.Syndication Pin
Nekkantidivya26-Jul-09 21:50
Nekkantidivya26-Jul-09 21:50 
AnswerRe: Can't find System.ServiceModel.Syndication Pin
Pete O'Hanlon26-Jul-09 22:38
mvePete O'Hanlon26-Jul-09 22:38 
AnswerRe: Can't find System.ServiceModel.Syndication Pin
Pete O'Hanlon27-Jul-09 1:50
mvePete O'Hanlon27-Jul-09 1:50 
Questionselecting iterms from Listbox and displaying in ListView using C#, XAML Pin
Krishna Aditya26-Jul-09 21:01
Krishna Aditya26-Jul-09 21:01 
AnswerRe: selecting iterms from Listbox and displaying in ListView using C#, XAML Pin
Christian Graus26-Jul-09 21:52
protectorChristian Graus26-Jul-09 21:52 
QuestionWPF: Window 7 CustomWindowManager for UserControl [Help] Pin
Kunal Chowdhury «IN»26-Jul-09 20:16
professionalKunal Chowdhury «IN»26-Jul-09 20:16 
AnswerRe: WPF: Window 7 CustomWindowManager for UserControl [Solved] Pin
Kunal Chowdhury «IN»26-Jul-09 21:16
professionalKunal Chowdhury «IN»26-Jul-09 21:16 
QuestionListView selecteditem Pin
Jacob Dixon26-Jul-09 15:23
Jacob Dixon26-Jul-09 15:23 
QuestionProblems Merging a MediaPlayer SL2Gallery Template into an Existing SL 2 App Pin
SBJ26-Jul-09 7:50
SBJ26-Jul-09 7:50 
I created an Expression MediaPlayer app with Encoder 2 using the SL2Gallery template. The app works perfectly stand-alone but I want to put the player on a page in another Silverlight 2 app. The playlist for the original app is supplied to the .xap through initParams. I copied the entire Page.xaml into my page (changed the namspace etc) and added the playlist to the player as follows. It almost works. I have three problems.

1. The playlist listbox acts as though the scroll area is only two items long. It's plenty big to show all of the items. Sometimes when scrolling a third item will show up, but it's intermittent.
2. The Thumbs don't display. I've tried every conceivable Build Action, but nothing seems to work. And yes I can see them added to the compilation during the build.
3. If the first two can be solved, I'd like it to auto start when the page opens.


<ExpressionPlayer:ExpressionPlayer Margin="0,0,0,0"
                                   x:Name="myPlayer"
                                   Style="{StaticResource GalleryTemplate}">
    <ExpressionPlayer:ExpressionPlayer.Playlist>
        <ExpressionMediaPlayer:PlaylistItem  Title="Preparing Your Home"
                                             MediaUrl="Properties/video1.wmv"
                                             Description="My Description"
                                             ThumbSource= "Properties/video1_Thumb.jpg"
                                             FrameRate="25" />
        <ExpressionMediaPlayer:PlaylistItem  Title="2"
                                             MediaUrl="Properties/video2.wmv"
                                             ThumbSource="Properties/video2_Thumb.jpg"
                                             FrameRate="25" />
        <ExpressionMediaPlayer:PlaylistItem  Title="3"
                                             MediaUrl="Properties/video3.wmv"
                                             ThumbSource="Properties/video3_Thumb.jpg"
                                             FrameRate="25" />
        <ExpressionMediaPlayer:PlaylistItem  Title="4"
                                             MediaUrl="Properties/video4.wmv"
                                             ThumbSource="Properties/video4_Thumb.jpg"
                                             FrameRate="25" />
    </ExpressionPlayer:ExpressionPlayer.Playlist>
</ExpressionPlayer:ExpressionPlayer>


There is very little information on how to use the SL2Gallery template, so if someone could assist I'd appreciate it.

Thanks,
Steve

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.