Silverlight 3.0, 4 Provide Support Application Out of browser Mode it will behave just like desktop application it install on you desktop and you programs as well all you to remove
you can create border less as well just like window media player .
you install you application Programticlly as well
1: private void Application_Startup(object sender, StartupEventArgs e)
2: {
3: if ((App.Current.InstallState == InstallState.Installed) && (!App.Current.IsRunningOutOfBrowser))
4: {
5: this.RootVisual = new Installed();
6: }
7: else if (!App.Current.IsRunningOutOfBrowser)
8: {
9: this.RootVisual = new Installer();
10: }
11: else
12: {
13: this.RootVisual = new MainPage();
14: }
15: }
For update you OOB mode applicaiton
Installer Setting
0 comments:
Post a Comment