Skip to main content
Home Forums Silverlight Programming Programming with .NET - General access to status bar silverlight2
9 replies. Latest Post by microsoft_kc on August 4, 2008.
(0)
josh100
Member
50 points
86 Posts
08-03-2008 6:06 AM |
hi all,
does silverlight 2 beta 2 have got an access to write text on the status bar?
thanks.
nahidul
160 points
21 Posts
08-03-2008 6:17 AM |
try this
HtmlPage.Window.SetProperty("status", "hi");
08-03-2008 8:03 AM |
hi,
it's not working...
08-03-2008 8:20 AM |
im test it in ie7 its working fine.But in fire fox you have to check
Enable java script.and Change status bar change...
in fire fox 2.0.0.16 you will find it in tools>options>advanced..
if not working spacify your browser version please..
08-03-2008 9:15 AM |
strange, i have got ie7, and i see nothing
sladapter
All-Star
17445 points
3,173 Posts
08-03-2008 10:18 AM |
HtmlPage.Window.SetProperty("defaultStatus", YourText);
08-03-2008 10:26 AM |
i don't see anything.
what can i do?
08-03-2008 10:37 AM |
You mean with HtmlPage.Window.SetProperty("defaultStatus", "Hollo"); you do not see anything on IE7?
I'm sure it's working on IE7. Try to put that line in Page_Loaded event or some button click event. Maybe some other process (like javascript) on your page also trying to write something on the status bar when you load the page.
HtmlPage.Window.SetProperty("defaultStatus", "Hollo");
is equivalent as you do in JavaScript
window.defaultStatus = "Hello";
08-03-2008 10:43 AM |
hi do this
Open Internet Explorer, click the Tools button, click Internet Options, and then click the Security tab.Click Internet or Restricted sites, and then click the Custom level button.Scroll down to Allow status bar updates via script, select Enable.Click OK until you return to Internet Explorer.
microsof...
Contributor
2904 points
566 Posts
08-04-2008 12:18 AM |
Hi, can you check whether your status bar is visible or not?If not, go to Tools -> Toolbars and check the statusbar.