Is it possible to use a JPG file as a Window Icon using strictly XAML? I've found examples where you can use a BitmapFrame within C# to generate an ImageSource on the fly (which is then assignable to the Icon property), but I'd love to do something like:
<Window.Icon>
<SomeXAMLThatLetsMeUseJpg Source="MyJpg.jpg" />
</Window.Icon>
Is this possible?