ChildWindow in a aspx page
hey all,
i have small (maybe newbie) problem hope can me solve :)
i have aspx page has small 200*50 silverlight app in (embedded object tag of course).
that silverlight app suppose open childwindow.
if open childwindow silverlight app open in 200*50 area? if so, can make open on "full" aspx, meaning want childwindow open in center of page , bigger 200*50...
hope question clear if not more happy explain further..
thanks :)
the childwindow must fit inside of silverlight application, constrained size.
a few ways make happen:
1. instead of using childwindow, use javascript popup instead
system.windows.browser.htmlpage.window.alert("alert message");
- or -
bool blnresult = system.windows.browser.htmlpage.window.confirm("are sure?");
2. otherwise, you'll need make silverlight large app , transparent. there many problems list, because transparency @ object level dramatically impacts rendering performance , app block clicks getting through underlying page. in respect, better either use a asp.net-based solution or move rest of page silverlight solution.
Silverlight > Getting Started with Silverlight
Comments
Post a Comment