I am embedding a XamGrid as my content for the XamDialogWindow, it seems to show up kind of blurry. If I move the window around a bit it then fixes itself. Why is this? Please help....
When I was setting the Content property I was using object type.
When I cast the object as what the actual type is, it fixes it.
so for example:
object content = new UserControl();
this.XamDialogWindow.Content = content; // this creates blurriness
this.XamDialogWindow.Content = content as UserControl; // fixes the issue
I take that back, I've noticed the contents are blurry when I launch the DialogWindow when my browser is not maximized..... Please Help!