Silverlight Simple Deployment and Out of browser mode

Friday, June 4, 2010

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

share this post
Share to Facebook Share to Twitter Share to Google+ Share to Stumble Upon Share to Evernote Share to Blogger Share to Email Share to Yahoo Messenger More...

0 comments: