Out of Browser的自定义应用

最后更新于:2022-04-01 14:20:34

![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c435fed.png) 在上两篇教程中,讲述了Silverlight的Out of Browser理论知识和基础实践。本节将讲述如何创建自定义的Out of Browser应用以及如何调试Silverlight的Out of Browser应用。 **Silverlight Out of Browser的自定义化** 从Silverlight 4开始,OOB应用支持信任权限设置和窗口自定义,最典型的自定义窗口应用是[Silverlight Facebook客户端](http://www.google.ca/url?sa=t&source=web&cd=3&ved=0CB0QFjAC&url=http%3A%2F%2Fwww.silverlight.net%2Fcontent%2Fsamples%2Fapps%2Ffacebookclient%2F&ei=k387TLKkL8ftnQfU5M32Aw&usg=AFQjCNFWpZM0vn-dPbcUiaXbWvYzFxu-vA&sig2=K0zcUGBplGEL3Spe0559Dw)。从下图可以看出,OOB应用其运行效果已经基本和Windows应用相似,其专业效果不逊于WinForm和WPF应用。 ![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c45d039.png) 对于创建自定义窗口应用,微软提供了非常简单的方法, ![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c47d32e.jpg) 首先选择“Require elevated trust when running outside the browser”, 在下面“Window Style”中可以选择不同的窗口模式,其中分别是: ![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c491fbf.jpg) 1. Default模式,默认模式是使用Windows默认窗口样式; 2. No Border,无边框模式; 3. Borderless Round Corners, 圆角无边框模式; 对比以上三种方模式,第一种默认模式最为简单,因为使用的是Windows默认窗口,其中最大化和最小化以及关闭控件都是继承自Windows窗口,其中窗口的拖拉事件默认的也是使用Windows API进行控制; 而第二种和第三种窗口模式,允许设计开发人员创建个性的OOB窗口应用,但是同时也需要创建自定义的最大化,最小化以及关闭控件。下面看一个简单的实例演示, 这里我们使用第三种窗口模式,圆角无边框窗口作为演示,首先打开上一讲中的例程项目SilverlightOOBDemo,为了演示的清晰明了,我们将重新创建一个OutofBrowserMainPage页面,承载新的自定义窗口页面。 ![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c4a00cf.jpg) 该页面,我们模拟上面Facebook的黑色配色方案,简单实现自定义窗口。由于我们使用的是第三种窗口模式,圆角无边框,这里我们需要为OOB应用创建自定义最大化,最小化和关闭控件,以及拖拽响应事件。 首先创建自定义最大化,最小化和关闭控件, 创建一个新的控件WindowControls,将最大化,最小化和关闭控件归类放入该页面, ![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c4b4f2b.jpg) ~~~  <UserControl x:Class="SilverlightOOBDemo.WindowControls"      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"      mc:Ignorable="d"      d:DesignHeight="300" d:DesignWidth="400"  Width="80" Height="24">      <StackPanel x:Name="LayoutRoot" Background="DarkGray" Orientation="Horizontal">          <Button x:Name="btMinimize" Height="20" Width="20" Margin="3" >              <Image Width="14" Height="14" VerticalAlignment="Center" HorizontalAlignment="Center" Source="/SilverlightOOBDemo;component/Images/min.png" Stretch="None"/>          </Button>          <Button x:Name="btMaximize" Height="20" Width="20" Margin="3" >              <Image Width="14" Height="14" VerticalAlignment="Center" HorizontalAlignment="Center" Source="/SilverlightOOBDemo;component/Images/max.png" Stretch="None"/>          </Button>          <Button x:Name="btClose" Height="20" Width="20" Margin="3" >              <Image Width="14" Height="14" VerticalAlignment="Center" HorizontalAlignment="Center" Source="/SilverlightOOBDemo;component/Images/close.png" Stretch="None"/>          </Button>      </StackPanel>  </UserControl> ~~~ 然后创建简单的哦OutofBrowserMainPage页面样式,调用上面新创建的WindowControls控件。由于这里基本都是基础布局代码,这里不再赘述,如果对Silverlight项目布局不熟悉的,请看这套系列教程“Expression Blend实例中文教程系列文章汇总 ”。 ~~~  <UserControl x:Class="SilverlightOOBDemo.OutofBrowserMainPage"      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:local ="clr-namespace:SilverlightOOBDemo"      mc:Ignorable="d"      d:DesignHeight="600" d:DesignWidth="900">      <Border CornerRadius="3" BorderThickness="7" BorderBrush="Black"  Background="Gray" x:Name="lytRoot">          <Border CornerRadius="4" BorderBrush="Black" BorderThickness="3" Background="DarkGray" Margin="1">              <Grid x:Name="LayoutRoot">                  <Grid.ColumnDefinitions>                      <ColumnDefinition Width="325*" />                      <ColumnDefinition Width="57*" />                  </Grid.ColumnDefinitions>                  <Grid.RowDefinitions>                      <RowDefinition Height="24" />                      <RowDefinition Height="*" />                  </Grid.RowDefinitions>                  <local:WindowControls HorizontalAlignment="Right" VerticalAlignment="Top" Grid.Column="1" />                  <StackPanel Orientation="Horizontal" IsHitTestVisible="True" Background="DarkGray" >                      <TextBlock Text="Silverlight OOB Demo" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,0,0,0" FontSize="15" Height="24" Width="195"/>                  </StackPanel>                  <Grid Grid.Row="1" Grid.ColumnSpan="2"  >                      <Grid.Background>                         <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">                              <GradientStop Color="#FF000000" Offset="0"/>                              <GradientStop Color="#FF585858" Offset="1"/>                          </LinearGradientBrush>                      </Grid.Background>                                        </Grid>              </Grid>          </Border>      </Border>  </UserControl> ~~~ 这样一个自定义的OOB应用窗口已经创建完毕了。运行看看,这里会提示Security Warning,这是由于我们选择了权限信任设置,Silverlight客户端会自动提醒用户是否授权安装该应用。这里微软提供了XAP签名验证,可以优化Security Warning窗口,让用户更容易接受和安装,这将在后文介绍,这里我们直接点击安装即可。 ![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c4c3e08.jpg) 这时会弹出以下自定义OOB应用窗口: ![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c4da474.jpg) 这样基本的Layout算是完成,而我们会发现,创建的自定义最大化,最小化和关闭控件都不能使用而且,窗口无法进行拖动。下面我们来添加一些代码来完善该自定义窗口。 **最大化,最小化和关闭的功能实现** 首先完善自定义最大化和最小化以及关闭控件的功能,进入WindowControl页面,添加简单代码即可实现上述功能, ~~~  public partial class WindowControls : UserControl      {          bool maximized = false;          public WindowControls()          {              InitializeComponent();          }          /// <summary>          /// 窗口最大化控制          /// 欢迎访问我的博客:          /// http://jv9.cnblogs.com          /// </summary>          /// <param name="sender"></param>          /// <param name="e"></param>          private void btMaximize_Click(object sender, RoutedEventArgs e)          {              if (!maximized)              {                  Application.Current.MainWindow.WindowState = WindowState.Maximized;                  maximized = true;              }              else              {                  maximized = false;                  Application.Current.MainWindow.WindowState = WindowState.Normal;              }          }          /// <summary>          /// 窗口关闭控制          /// </summary>          /// <param name="sender"></param>          /// <param name="e"></param>          private void btClose_Click(object sender, RoutedEventArgs e)          {              Application.Current.MainWindow.Close();          }          /// <summary>          /// 窗口最小化控制          /// </summary>          /// <param name="sender"></param>          /// <param name="e"></param>          private void btMinimize_Click(object sender, RoutedEventArgs e)          {              Application.Current.MainWindow.WindowState = WindowState.Minimized;          }      } ~~~ **主窗口位置拖拽功能实现** 而对于OOB应用主窗口的拖拽,则需要在OutofBrowserMainPage中添加简单代码即可实现,代码如下: 首先声明实例获取当前主窗口 1 Window OOBWindow = Application.Current.MainWindow; 然后在窗口头部灰色区域创建鼠标响应事件, ![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c4ecf5d.jpg) ~~~ <StackPanel Orientation="Horizontal" MouseLeftButtonDown="StackPanel_MouseLeftButtonDown" IsHitTestVisible="True" Background="DarkGray" >                     <TextBlock Text="Silverlight OOB Demo" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,0,0,0" FontSize="15" Height="24" Width="195"/> </StackPanel> ~~~ 在StackPanel_MouseLeftButtonDown事件中添加简单的控制代码即可实现OOB应用主窗口位置移动拖拽。 ~~~   private void StackPanel_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)          {              OOBWindow.DragMove();          } ~~~ **主窗口尺寸修改实现** 对于Windows窗口而言,修改窗口尺寸大小属于基本功能,在Silverlight的Out of Browser中,同样有相对应的API可以实现窗口尺寸修改,方法如下: 和上面相同,我们将创建一个独立的控件页面WindowResize,其中使用Path创建一个简单的拖拽图标![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-03-18_56eb67c509db6.jpg) , ~~~  <UserControl x:Class="SilverlightOOBDemo.WindowResize"      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"      mc:Ignorable="d"      d:DesignHeight="300" d:DesignWidth="400" MouseEnter="UserControl_MouseEnter" MouseLeave="UserControl_MouseLeave">      <Border x:Name="LayoutRoot" BorderThickness="0" HorizontalAlignment="Right" VerticalAlignment="Bottom" Width="20" Height="20" Margin="0,0,-2,-2">          <Path x:Name="ptResize" Margin="6,6,0,0" Cursor="SizeNWSE" MouseLeftButtonDown="ptResize_MouseLeftButtonDown"                  Data="M 8,0 L10,0 L10,2 L8,2 Z M 4,4 L6,4 L6,6 L4,6 Z M 8,4 L10,4 L10,6 L8,6 Z M0,8 L2,8 L2,10 L0,10 Z M4,8 L6,8 L6,10 L4,10 Z M8,8 L10,8 L10,10 L8,10 Z"Fill="Gray"/>      </Border> </UserControl> ~~~ 为了响应拖拽修改窗口尺寸,需要创建鼠标响应事件MouseLeftButtonDown,在事件中,调用Silverlight API, ~~~  public partial class WindowResize : UserControl      {           public WindowResize()           {               InitializeComponent();           }         /// <summary>           /// 修改主窗口尺寸          /// </summary>          /// <param name="sender"></param>          /// <param name="e"></param>          private void ptResize_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)          {              Application.Current.MainWindow.DragResize(WindowResizeEdge.BottomRight);          }          private void UserControl_MouseEnter(object sender, MouseEventArgs e)          {              this.Cursor = Cursors.SizeNWSE;          }          private void UserControl_MouseLeave(object sender, MouseEventArgs e)          {              this.Cursor = Cursors.Arrow;          }      } ~~~ 这样该控件已经可以实现修改OOB应用主窗口尺寸大小,将该控件添加到OutofBrowserMainPage即可使用。 ~~~ <local:WindowResize Grid.Row="1" Grid.Column="1" Height="20" Width="20" VerticalAlignment="Bottom" HorizontalAlignment="Right"></local:WindowResize> ~~~ 通过上面步骤的介绍,我们已经创建了一个完整的简单的Silverlight OOB自定义窗口应用。以上所有功能都是Silverlight 4的API提供。如果你在项目中需要更多的自定义功能,你可以通过继承Silverlight基类创建更为灵活和强大的自定义OOB控件。在微软官方提供了一套开源的[创建自定义Out of Browser应用项目](http://blogs.msdn.com/b/silverlight_sdk/archive/2010/05/24/creating-a-custom-out-of-browser-window-in-silverlight-4.aspx),如果感兴趣,大家可以下载该项目参考学习。 今天就写到这了,如果您在阅读中发现问题或者有好的建议,请您给我留言,在这里提前感谢您的支持和帮助。 [本篇源代码下载](http://files.cnblogs.com/jv9/SilverlightOOBDemo2.rar) 欢迎大家加入"专注Silverlight" 技术讨论群: 32679955(六群) 23413513(五群) 32679922(四群) 100844510(三群) 37891947(二群) 22308706(一群)  
';