显示标签为“Silverlight 5 业务应用程序”的博文。显示所有博文
显示标签为“Silverlight 5 业务应用程序”的博文。显示所有博文

2014年9月19日星期五

Building Silverlight Business Application with Telerik Report Viewer, step by step



Telerik Reports are Class based, so we will create a Class Library Project to contain Telerik Reports.

To feed the Telerik Reports with data using Entity Data Model, we cannot use the EDM located in the Silverlight Web project; as a circular dependency issue will rise once we add a reference to the Silverlight Web project from the Telerik Report Class Library project. As an alternative, we can create a new Class Library Project to contain the Entity Data Model that will feed the Telerik Report Class Library project.

2014年1月26日星期日

IIS7部署Silverlight5应用程序

sl部署比开发还麻烦,还好在网上找到这篇帖子,基本解决了遇到的所有问题:
 
http://www.cnblogs.com/sonce/archive/2011/03/04/1970803.html
 

2013年12月27日星期五

Building Business Applications with Microsoft Silverlight

 Building Business Applications with Microsoft Silverlight
Microsoft Corporation – April 2010

http://download.microsoft.com/download/7/C/8/7C87A1AE-E500-471F-91C9-EA289360C12C/Building%20Business%20Apps%20with%20Silverlight.docx

2013年12月19日星期四

Key Points of Some Best Practices for Silverlight

    • Don’t use unnecessary “xmlns” namespaces in the XAML file. This overburdens the load time of the Silverlight page (If you are using Resharper, you can do this very easily as it will change the color of the unnecessary items to Grey). 
    • Don’t add same namespaces multiple times in a single XAML page. It screws up the XAML code at the time of maintenance and also loads the assembly namespace multiple times causing various memory issues at runtime. 

Silverlight 4 Tools for VS 2010 and WCF RIA Services Released

The final release of the Silverlight 4 Tools for Visual Studio 2010 and WCF RIA Services is now available for download

Download and Install

If you already have Visual Studio 2010 installed (or the free Visual Web Developer 2010 Express), then you can install both the Silverlight 4 Tooling Support as well as WCF RIA Services support by downloading and running this setup package (note: please make sure to uninstall the preview release of the Silverlight 4 Tools for VS 2010 if you have previously installed that). 
The Silverlight 4 Tools for VS 2010 package extends the Silverlight support built into Visual Studio 2010 and enables support for Silverlight 4 applications as well.  It also installs WCF RIA Services application templates and libraries:

用JetBrains dotTrace Performance调试Silverlight代码

试试用JetBrains dotTrace Performance调试Silverlight代码

概述

在.NET平台下常用的性能调试工具有WinDBG, ANTS Performance Profiler,JetBrains dotTrace Performance,CLR Profiler等。
WinDBG比较强大,但是也是用起来较为复杂的一种。WinDBG一般采用输入命令式的方式。WinDBG能查看当前应用内存中有多少对象。每个对象的地址,对象之间的依赖关系。以及能Dump出IL等。当我们看到某个类型的对象不应该有这么多,这个时候我们可以尝试随机Dump出某个对象的依赖关系。WinDBG功能强大在张银奎的《软件调试》一书中有详细的介绍。
ANTS Performance Profiler 和dotTrace 差不多都是采用拍摄内存快照的方式。这里主要介绍dotTrace在Silverlight中使用方法。

Silverlight开发工具汇总

Silverlight开发工具汇总

时间:2010-02-19 12:26来源:银光中国网 作者:Jv9 点击:24275次
随着Silverlight技术的逐步完善,Silverlight应用大批的涌现,近期的2010年冬季奥运会,Silverlight作为首选视频播放技术,为全球提供在线赛事实况。 Silverlight技术的发展需要更多的开发人员加入,作为Silverlight技术的支持者,我把平时Silverlight开发使用的工具进

Silverlight MVVM 贴近实战(七)

今天我们通过用户管理模块来系统的讲述关于Action,Trigger的使用。首先还是先上一张图,调一下胃口。 这个图中的Grid怎会变成如此摸样,是的,在这里我们用到了一点点3D的效果。首先我们先从前台代码入手。 controls:ChildWindowx:Class= MISInfoManage.UserManageView /*此处省略部分代码*/ xmlns:resource= clr-namespa
  

Silverlight MVVM 贴近实战(六)

扯面工程师,配菜工程师,门迎工程师,当今世界工程师可真多啊。
  今天我们把系统参数管理模块翻译成Silverlight项目。首先请看两张图

Silverlight MVVM 贴近实战(五)

我不像有些大牛能出书做MVP,有些大牛能卖组件开公司,我只是个小程序员。 今天主要是展示Silverlight的验证和OOB(Out Of Browser)模式,对了,我平时最恨那些写博客只写简写而不注明全称的人,所以这里OOB就是Out Of Browser。顾名思义,浏览器外,也就是Silverlight运行在浏览器外。OK,废话不多说,先上一张图,档案信

Silverlight MVVM 贴近实战(四)

有的大牛只写怎样怎样理解概念,喜欢讲一些概念,有的大牛干脆不写技术,有的大牛只会唯利是图,卖一些组件,我不是大牛,我喜欢帮助别人。 今天我们看看档案管理界面的数据查询与展示,先上一张图,调一下胃口。 这个界面主要的看点有DataGrid数据展示,分组,分页,Convert的使用等。首先我们来看一下界面的代码,这个布
 

Silverlight MVVM 贴近实战(三)

我没有大牛搞懂原理源代码的本事,我只有一颗帮助别人的心。 今天我们来通过修改代码模块来介绍一下Command绑定以及ViewModel的作用。先看一张图,调一下胃口,看看修改密码页面。 首先我们点击修改密码,弹出修改密码界面,那么我们肯定用的是双击,但是Silverlight无双击事件,只有左右键单击事件。怎么办呢,我们只能根
  

Silverlight MVVM 贴近实战(二)

Silverlight MVVM 贴近实战(二)

时间:2012-05-30 18:14来源:51cto.com 作者:BruceAndLee 点击:2453次
上篇我们看了登陆界面,本篇我对服务端进行一个剖析。以及主界面的设计。我们上次忘记解释一个Silverlight的项目如何寄宿在MVC项目上。我们先来看看如何寄宿。看下图 我们看到了MISInfoManage这个项目是一个Silverlight项目。它寄宿在MISInfomanage.Web.Host这个MVC3项目中。流程是这样的,Silverlight寄宿在MISInfomanage
 

[Silverlight入门系列]使用MVVM模式

[Silverlight入门系列]使用MVVM模式(1):MVVM核心概念


MVVM模式是Model、View、ViewModel的简称,最早出现在WPF,现在Silverlight中也使用该模式,MVVM模式是对MVC模式的变种。哪儿变了?我认为MVVM和MVC的主要变化在于MVVM更适合于XAML。

Siverlight SDK Sample Browser

一个简单的 Silverlight 4 应用程序(MEF+ MVVM+ WCF RIA Services)第三部分

注:本文是Weidong Shen先生在CodeProject上的文章,为了学习方便,进行了全文翻译,后续将以此程序示例为蓝本,写出自已的实用LOB程序来,在此向Weidong Shen先生表示感谢,欢迎大家对我的翻译进行拍砖。题目虽然是简单的Silverlight 4应用程序,其实一点也不简单,还是有很多硬实的内容需要学习的。

一个简单的 Silverlight 4 应用程序(MEF+ MVVM+ WCF RIA Services)--第二部分

注:本文是Weidong Shen先生在CodeProject上的文章,为了学习方便,进行了全文翻译,后续将以此程序示例为蓝本,写出自已的实用LOB程序来,在此向Weidong Shen先生表示感谢,欢迎大家对我的翻译进行拍砖。本文是该系列的第2部分。

一个简单的 Silverlight 4 应用程序(MEF+ MVVM+ WCF RIA Services)第一部分

注:本文是Weidong Shen先生在CodeProject上的文章,为了学习方便,进行了全文翻译,后续将以此程序示例为蓝本,写出自已的实用LOB程序来,在此向Weidong Shen先生表示感谢,欢迎大家对我的翻译进行拍砖。

Silverlight + RIA Service的SUID的实例

WCF RIA Service网上也有一些例子,不过都比较简单,我把我的一个比较接近实际的例子跟大家分享分享。

SilverLight商业应用程序开发---学习笔记(13)数据输入验证

对无效数据的输入进行验证和必要的提示是商业应用程序必备的功能之一。Silverlight使用Data Annotation特性标记来进行数据的验证,对用户输入数据的合法性进行判断,阻止非法数据提交到服务器,并给出修改提示。
1、验证错误信息的显示
1)数据输入控件: