稳扎稳打Silverlight(44)

稳扎稳打Silverlight(44) - 4.0浏览器外运行(Out Of Browser)之OOB的增强及其新增的NotificationWindow

介绍

Silverlight 4.0 OOB 模式的新特性:

* 新增了 Closing 事件

* 实现程序在 OOB 模式下的自动更新

* NotificationWindow - 在 OOB 模式下显示通知窗口,也就是 toast

* 实现自定义的 NotificationWindow

在线DEMO

http://www.cnblogs.com/webabcd/archive/2010/08/09/1795417.html

示例

1、OOB(Out Of Browser)模式的复习,以及其新增的 Closing 事件

Demo.xaml

代码

<navigation:Page x:Class="Silverlight40.OutOfBrowser.Demo"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
            xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
            xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
            Title="Other Page">
     <Grid x:Name="LayoutRoot">
         <StackPanel HorizontalAlignment="Left">
             <Button Name="btnOutOfBrowser" Margin="50" Click="btnOutOfBrowser_Click" />
             <Button Name="btnClose" Margin="50" Content="关闭" Click="btnClose_Click" />
             <TextBlock Text="OOB 模式下网络状况的检测,以及程序的升级详见本目录下的 AutoUpdateDemo.xaml" Margin="5" />
             <TextBlock Text="OOB 模式的 toast(以及与 Popup 的对比)详见本目录下的 NotificationWindowDemo.xaml" Margin="5" />
             <TextBlock Text="OOB 模式下自定义 NotificationWindow 的内容及样式详见本目录下的 CustomNotificationWindowDemo.xaml" Margin="5" />
         </StackPanel>

     </Grid>
</navigation:Page>

Demo.xaml.cs

代码

/*
  * Silverlight 3.0 时代具有如下特性
  * Application.InstallStateChanged - 浏览器外运行的相关状态发生改变时所触发的事件
  * Application.InstallState - 浏览器外运行的相关状态 [System.Windows.InstallState 枚举]
  *     NotInstalled - 在浏览器中运行
  *     Installing - 安装到桌面中
  *     Installed - 在浏览器外运行
  *     InstallFailed - 安装到桌面的过程中发生错误
  * Application.IsRunningOutOfBrowser - 当前程序是否是从浏览器外启动的
  * Application.Install() - 安装 Silverlight 程序到浏览器外(卸载只能通过右键菜单的方式卸载)
  * Application.CheckAndDownloadUpdateAsync, Application.CheckAndDownloadUpdateCompleted - 一对异步方法/事件,用于更新浏览器外运行的 Silverlight 程序(从服务器上下载新的版本)
  * 
  * 启用 OOB:在 Silverlight 项目上单击右键 -> 属性 -> Silverlight -> 选中 Enable running application out of the browser
  * 配置 OOB:在 Silverlight 项目上单击右键 -> 属性 -> Silverlight -> Out-of- Browser Settings 可以对“浏览器外运行”的相关参数做设置(也可以手动修改 Properties/OutOfBrowserSettings.xml)
  */

/*
  * 调试 OOB 模式下的 Silverlight 程序:启用 OOB 模式,将 Silverlight 项目设置为启动项目,然后运行即可
  */

/*
  * 本例用于演示 Closing 事件
  * Application.Current.MainWindow - OOB 模式下的应用程序窗口。属性值为 System.Windows.Window 类型
  * Window.Activate() - 激活窗口,使之具有焦点,并置于最前面
  * Window.IsActive - 是否为激活窗口(仅 get)
  * Window.Close() - 关闭窗口
  * Window.Closing - 窗口关闭前触发的事件。事件参数为 System.ComponentModel.ClosingEventArgs 类型
  *     ClosingEventArgs.IsCancelable - 是否可以取消窗口的关闭事件
  *     ClosingEventArgs.Cancel - 是否取消窗口的关闭事件
  */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Windows.Navigation;
namespace Silverlight40.OutOfBrowser
{
     public partial class Demo : Page
     {
         public Demo()
         {
             InitializeComponent();
         }
         protected override void OnNavigatedTo(NavigationEventArgs e)
         {
             if (App.Current.IsRunningOutOfBrowser)
                 btnOutOfBrowser.Content = "卸载";
             else
                 btnOutOfBrowser.Content = "安装";
             Init();
         }
         private void btnOutOfBrowser_Click(object sender, RoutedEventArgs e)
         {
             if (!App.Current.IsRunningOutOfBrowser && App.Current.InstallState == InstallState.NotInstalled)
                 App.Current.Install();
             else
                 MessageBox.Show("已经安装,使用右键卸载");
         }
         void Init()
         {
             if (Application.Current.IsRunningOutOfBrowser)
                 Application.Current.MainWindow.Closing += new EventHandler<System.ComponentModel.ClosingEventArgs>(MainWindow_Closing);
         }
         void MainWindow_Closing(object sender, System.ComponentModel.ClosingEventArgs e)
         {
             if (MessageBox.Show("确认关闭吗?", "确认", MessageBoxButton.OKCancel) == MessageBoxResult.OK)
             {
             }
             else
             {
                 if (e.IsCancelable)
                     e.Cancel = true;
             }
         }
         private void btnClose_Click(object sender, RoutedEventArgs e)
         {
             if (Application.Current.IsRunningOutOfBrowser)
                 Application.Current.MainWindow.Close();
         }
     }
}

时间: 2024-11-16 23:10:14

稳扎稳打Silverlight(44)的相关文章

稳扎稳打Silverlight(4)

稳扎稳打Silverlight(4) - 2.0控件之DataGrid,DatePicker,Grid,GridSplitter,HyperlinkButton,Image 在线DEMO http://www.cnblogs.com/webabcd/archive/2008/10/09/1307486.html 示例 1.DataGrid.xaml <UserControl xmlns:data="clr-namespace:System.Windows.Controls;assembly

稳扎稳打Silverlight(36)

返回"稳扎稳打Silverlight 3.0系列文章索引" 稳扎稳打Silverlight(36) - 3.0控件之TreeView,ListBox增强,DataGrid增强,MediaElement增强 介绍 Silverlight 3.0 控件一览: TreeView - 树控件 ListBox - 改进:支持多选 DataGrid - 改进:结合 PagedCollectionView 实现数据分组, 增加了一些编辑数据的相关事件, 结合 DataAnnotations 实现数据

稳扎稳打Silverlight(51)

稳扎稳打Silverlight(51) - 4.0绑定之数据验证IDataErrorInfo,INotifyDataErrorInfo 介绍 Silverlight 4.0 数据验证: * IDataErrorInfo - 对数据实体类提供自定义验证支持..NET Framework 也有此接口,可以方便移植 * INotifyDataErrorInfo - 对数据实体类提供自定义验证支持,比 IDataErrorInfo 功能更强大.INotifyDataErrorInfo 支持异步验证,这就

稳扎稳打Silverlight(47)

稳扎稳打Silverlight(47) - 4.0UI之操作剪切板,隐式样式,CompositeTransform,拖放外部文件到程序中 介绍 Silverlight 4.0 用户界面(UI)相关: * 操作剪切板 - 支持获取或设置剪切板中的文本信息 * 隐式样式(Implicit Style) - 将某种样式应用到某种类型的所有元素,即全局样式 * CompositeTransform - 将多种转换方式合而为一 * 拖动(Drag)外部文件,并将其放到(Drop) Silverlight

稳扎稳打Silverlight(46)

稳扎稳打Silverlight(46) - 4.0UI之FlowDirection,TextTrimming,响应鼠标滚轮事件,响应鼠标右键事件,全屏的新特性 介绍 Silverlight 4.0 用户界面(UI)相关: * FlowDirection - 指定文本或界面元素在它们的父元素中的流动方向 * TextTrimming - 文字溢出时的显示方式 * 响应鼠标的滚轮事件 * 响应鼠标的右键事件 * 全屏的新特性 - 当其他程序获得焦点时,是否退出全屏模式 在线DEMO http://w

稳扎稳打Silverlight(45)

稳扎稳打Silverlight(45) - 4.0浏览器外运行(Out Of Browser)之被信任的应用程序(Trusted Application) 介绍 Silverlight 4.0 OOB 之 被信任的应用程序: * 概述 * 访问本地文件系统 * 调用 COM 接口 * 自定义窗口样式和行为 在线DEMO http://www.cnblogs.com/webabcd/archive/2010/08/09/1795417.html 示例 1.关于"被信任的应用程序"的简要概

稳扎稳打Silverlight(41)

返回"稳扎稳打Silverlight 3.0系列文章索引" 稳扎稳打Silverlight(41) - 3.0Tip/Trick之GPU加速,Out-Of-Browser,应用程序库缓存,合并ResourceDictionary,应用程序扩展服务,Silverlight插件对象 介绍 Silverlight 3.0 提示和技巧系列 GPU 加速 - 对 GPU 加速的支持 Out-Of-Browser -浏览器外运行,即支持脱离浏览器运行 应用程序库缓存 - 将 dll(zip) 缓存

稳扎稳打Silverlight(40)

返回"稳扎稳打Silverlight 3.0系列文章索引" 稳扎稳打Silverlight(40) - 3.0绑定之Element to Element Binding,RelativeSource,样式之动态修改样式,样式继承,自定义光标 介绍 Silverlight 3.0 绑定的新增功能,样式相关的新增功能 Element to Element Binding - Element 到 Element 之间的绑定 RelativeSource - 一个扩展标记,用于指定关联数据源为

稳扎稳打Silverlight(39)

返回"稳扎稳打Silverlight 3.0系列文章索引" 介绍 Silverlight 3.0 通信的新增功能 二进制XML通信 - 与 WCF 服务间通信,可以使用二进制 XML 传递数据(提高传输性能) 本地连接 - 允许客户端的两个 Silverlight 程序之间直接进行通信(不用通过服务端) 在线DEMO http://www.cnblogs.com/webabcd/archive/2009/08/04/1538238.html 示例 1.以二进制 XML 传递数据的演示