I am developing a Windows application in the style of Metro 8, and I want to use vector images. Since there seems to be no direct support for svg images, I am trying to use a xaml fragment consisting of several shapes (path and some lines) as an image. I would like to have a resource dictionary entry with a composite form and be able to include it on different pages. Ideally, I would also like to be able to resolve a specific compound form from a property associated with the data.
From what I read, the WPF approach was to have VisualBrushor DrawingBrush, consisting of figures, but there are no such classes in Windows 8 (and it seems that you can’t even extract from Brush).
How can I do this using WinRT UI?
source
share