WinRT XamlControl Preview Image

I got a MetroApp C # WinRT project ...

I have an overview of items implemented with a GridView that looks like this: Overview

If I click on one of these items, I get a Detail view of the item like this: Detail

The DetailView content is a custom XAML control. I want to have a preview of each of my DetailView in view items.

My question is: What is the best way to do this in WinRT and how? Can I render my custom XAML control in winRT?

Please help me!!

0


source to share


1 answer


There is no built-in or otherwise easy way to render XAML controls for an image unless you have a simple enough layout. You can wrap your control icons with an app if there are a limited number of them, or if your control's state keeps changing and you don't have many of those controls - you can just put a scaled version of your control in GridViewItem

s.



+1


source







All Articles