Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem need to ask your opinion: Should I put MediaElement inside DataTemplate of FlipView.ItemTemplate? Should I do like the following code

<FlipView> 
 <FlipView.ItemTemplate>
  <DataTemplate>
   <UserControl>
    <ScrollViewer>
     <StackPanel>
      <FlipView> <!-- FlipView for Image Slider -->
       <FlipView.ItemTemplate>
        <DataTemplate>
         <Image/>
        </DataTemplate>
       </FlipView.ItemTemplate>
      </FlipView>
      <ContentControl>
       <MediaElement/>
      </ContentControl>
      <!-- MediaElement's control buttons: Play, Pause, ... -->
      <StackPanel>
       <StackPanel.Children>
        <Button/>
        <Button/>
        <Button/>
       </StackPanel.Children>
      </StackPanel>
     </StackPanel>
    </ScrollViewer>
   </UserControl>
  </DataTemplate>
 </FlipView.ItemTemplate>
</FlipView>

or like the following code?

<FlipView> 
 <FlipView.ItemTemplate>
  <DataTemplate>
   <UserControl>
    <ScrollViewer>
     <StackPanel>
      <FlipView> <!-- FlipView for Image Slider -->
       <FlipView.ItemTemplate>
        <DataTemplate>
         <Image/>
        </DataTemplate>
       </FlipView.ItemTemplate>
      </FlipView>
     </StackPanel>
    </ScrollViewer>
   </UserControl>
  </DataTemplate>
 </FlipView.ItemTemplate>
</FlipView>
<Grid>
 <ContentControl>
  <MediaElement/>
 </ContentControl>
 <!-- MediaElement's control buttons: Play, Pause, ... -->
 <StackPanel>
  <StackPanel.Children>
   <Button/>
   <Button/>
   <Button/>
  </StackPanel.Children>
 </StackPanel>
</Grid>

In the case that I put MediaElement outside DataTemplate of FlipView.ItemTemplate, I can access it and its control buttons easily in code behind.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.