ArcGIS Viewer for Silverlight 系列:扩展Viewer之自定义布局

ArcGIS Viewer for Silverlight 系列:扩展Viewer之自定义布局,第1张

概述前面一篇博客讲了Application Builder快速构建应用,一些简单的应用、只需要常用功能的GIS应用,使用Builder内置的布局、工具基本能够满足需求。但是,在这个讲究XXX特色的地方,甲方往往不喜欢千篇一律的界面、一模一样的d窗、更不能容忍没有用户登录的系统。那么我们先来讲讲如何自定义Viewer的布局。 ArcGIS Viewer for SL系列的这篇博客及以后的博客都需要安装A

前面一篇博客讲了Application Builder快速构建应用,一些简单的应用、只需要常用功能的GIS应用,使用Builder内置的布局、工具基本能够满足需求。但是,在这个讲究XXX特色的地方,甲方往往不喜欢千篇一律的界面、一模一样的d窗、更不能容忍没有用户登录的系统。那么我们先来讲讲如何自定义viewer的布局。

ArcGIS VIEwer for SL系列的这篇博客及以后的博客都需要安装ArcGIS Extensibility SDK for Silverlight. 下载地址:http://www.esri.com/apps/products/download/index.cfm?fuseaction=download.all#ArcGIS_for_SharePoint

SDK安装好后在VS的新建窗口中的Silverlight下就会有一个ESRI VIEwer节点,其中有一个  ArcGIS VIEwer for Silverlight Project的项目模板,点击新建一个名为CustomLayout的项目。

创建出来的项目结构如下图,其中CustomLayout是测试运行的web项目,Addins是自定义的工具(Command、Tool、Behavior等),Layouts是自定义的布局项目。

Layouts项目中的Config目录中的Layouts目录包含了VIEwer常用的布局模板和各种d出窗口模板,Print包含的是打印模板。所以我们自定义布局的工作主要从这里开始。

我们可以自己新建一个XAML文件来设计应用的布局,也可以通过Layouts里的XAML文件来修改布局,如果是完全重新设计布局模板,XAML中的各种命名需要和标准模板的命名规则一致,这样VIEwer中的功能才可以正常运行。

将Layout项目通过Blend打开,这样更直观一些。

我们来新建一个HelloWorldLayout.xaml的布局模板,

这里演示新建了一个简单的布局模板,只有标题、工具栏和地图三个内容,XAML代码如下:

<UserControl	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        xmlns:esri="http://schemas.esri.com/arcgis/clIEnt/2009"            xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"	xmlns:d="http://schemas.microsoft.com/Expression/blend/2008"    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"        xmlns:ctlPrimitives="clr-namespace:System.windows.Controls.Primitives;assembly=System.windows.Controls"    xmlns:controls="clr-namespace:System.windows.Controls;assembly=System.windows.Controls"	xmlns:extensibility="http://schemas.esri.com/arcgis/clIEnt/extensibility/2010"    xmlns:converters="clr-namespace:ESRI.ArcGIS.ClIEnt.Application.Layout.Converters;assembly=ESRI.ArcGIS.ClIEnt.Application.Layout"    xmlns:i="http://schemas.microsoft.com/Expression/2010/interactivity"     xmlns:ei="http://schemas.microsoft.com/Expression/2010/interactions"    mc:Ignorable="d"    	d:DesignHeight="600" d:DesignWIDth="600">	<UserControl.Resources>        <ResourceDictionary>            <ResourceDictionary.MergedDictionarIEs>                <ResourceDictionary Source="ResourceDictionarIEs/Common/Shared_Resources.xaml" />                <ResourceDictionary Source="ResourceDictionarIEs/Common/VerticalNavigationStyle.xaml" />            </ResourceDictionary.MergedDictionarIEs>            <extensibility:MapApplicationBindingSource x:Key="MapApplication" />        </ResourceDictionary>    </UserControl.Resources>	<GrID d:DataContext="{Binding Source={StaticResource VIEwerDataSource}}">		<GrID.RowDeFinitions>			<RowDeFinition Height="50"/>			<RowDeFinition Height="75"/>			<RowDeFinition/>		</GrID.RowDeFinitions>		<StackPanel>		<TextBlock x:name="VIEwerTitle"  Text="{Binding TitleText}" GrID.Column="1" FontWeight="ExtraBold" FontSize="18" Foreground="{StaticResource AccentTextcolorBrush}" />			<TextBlock Text="Hello World Layout" FontWeight="ExtraBold" Foreground="{StaticResource AccentTextcolorBrush}"/>		</StackPanel>		<ContentControl x:name="MainToolbarContainer" GrID.Row="1" /> 		<esri:Map x:name="Map" HorizontalAlignment="Stretch" IslogoVisible="False"  VerticalAlignment="Stretch"						GrID.Row="2"                       d:DataContext="{Binding relativeSource={relativeSource Self},Converter={StaticResource SampleGraphicslayerConverter}}"                      WrapAround="True"/>	</GrID></UserControl>

模板编辑好后,将HelloWorldLayout.xaml文件拷到CustomLayout项目的Config/Layouts目录下,并修改Application.xml中的VIEwerApplication节点的LayoutfilePath属性为Config/Layouts/HelloWorldLayout.xaml即可应用到这个项目。

如果要将模板应用于Builder中,那么你需要准备一个名为HelloWorldLayout.Png的图片,

将HelloWorldLayout.XAML和HelloWorldLayout.PNG文件都拷到IIS目录下的\Builder\Templates\Default\Config\Layouts目录

我们再到Builder中就能看到自定义的模板了

这里应用新模板后的效果,由于XAML代码中没有设置GrID的背景色,看得有点模糊。

以上只是示意一下,项目中大多数作法是通过现有的模板来修改,当然有专门做UI设计的项目可以考虑自己做布局模板。同理可证,加什么登录窗口、进度条、修改其它窗口样式都是一样一样的!

总结

以上是内存溢出为你收集整理的ArcGIS Viewer for Silverlight 系列:扩展Viewer之自定义布局全部内容,希望文章能够帮你解决ArcGIS Viewer for Silverlight 系列:扩展Viewer之自定义布局所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1064945.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存