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....
As of right now, the latest versions for NetAdvantage for Silverlight are 10.2.20102.2216 and 10.3.20103.2068.
Were you able to reproduce the blur issue by using the sample that I provided in my previous update?
I am using 10.2.20102.2005
It there a later release ?
I attempted to reproduce the blurry appearance but wasn't able to. Can you see this behavior in the sample I've attached? If not, could you provide a sample that does? Also, which version of NetAdvantage are you using and what browser are you using?
I take that back, I've noticed the contents are blurry when I launch the DialogWindow when my browser is not maximized..... 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