Hi!
The feature with clickable/linking images causes issues when you want to link to another site than the image itself.
Example:
]
This will link to the videos thumbnail.

If you implement the command binding like this:
private void HyperlinkCommandBinding_OnExecuted(object sender, ExecutedRoutedEventArgs e) { Process.Start(e.Parameter.ToString()); }
I have tried to wrap the image with a link, like this:
[](https://www.youtube.com/watch?v=C0DPdy98e4c)

But this will still direct you to the image link.
I have tried not to implement the command binding for images, this results in the image not being clickable at all.
Is the feature with linking images necessary when you can achieve the same result when wrapping an image in a link?