by suleski | Mar 25, 2016 | Technical, Walkthroughs
The DataTemplateSelector could be a cool tool for changing out which DataTemplate is used to display an element within a list. I started using it for a media feature to figure out whether an element’s thumbnail should display as image, sound, or video. The...
by suleski | Mar 4, 2016 | Reference, Troubleshooting
The Image control used in XAML does not really seem like a big deal. Place it in your XAML and bind the Source Property to your Data. Might look something like this: <Image Source={Binding MyPath} /> However, there’s a case I came across that had me...
by suleski | Feb 11, 2016 | Reference, Technical
F12 does not really work in Visual Studio when using it on a XAML file. That includes ResourceDictionaries. Came across this article from Microsoft that covers the list of brushes, colors, fonts, etc that they make available for use.
by suleski | Feb 8, 2016 | Reference, Technical
Yea, that’s a long title to the article. However, the information in this article is super useful when you have to cross the same bridge because there is no clear way to debug. Here’s what’s going on. I am making a UWP app in Visual Studio. I want...