随笔分类 - SilverLight
Silverlight 是一种新的 Web 呈现技术,能在各种平台上运行。借助该技术,您将拥有内容丰富、视觉效果绚丽的交互式体验,而且,无论是在浏览器内、在多个设备上还是在桌面操作系统(如 Apple Macintosh)中,您都可以获得这种体验。Microsoft .NET Framework 3.0(Windows 编程基础结构)中的呈现技术 XAML(可扩展应用程序标记语言)遵循 WPF (Windows Presentation Foundation),它是 Silverlight 呈现功能的基础。
摘要:Silverlight 3 的一个新特性是通过在其APIs中提供一个导航框架来实现页面的跳转。在App.xaml里提供了这种方式来使用它的Uri映射机制。1: <Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 2: xmlns:x="http://schemas.microsoft.c...
阅读全文
摘要:数据绑定(Data Binding)是用户界面UI和业务对象或其它数据提供者(data provider)的连接。用户界面对象称为目标,数据提供者成为数据源。 数据绑定帮助隔离应用程序的用户界面层和其他层,如业务对象、数据等等。通过绑定对象,实现用户界面层和底层的隔离。 在Silverlight 2中,支持三种模式的数据绑定。 1.OneTime:一次绑定,在绑定创建时使用源数据更新目标,适用于...
阅读全文
摘要:If you read my last post, you might have noticed how easy it is to get a Silverlight DataGrid up and running with the AutoGenerateColumns feature. Something else you might have noticed is that if you ...
阅读全文
摘要:从 Silverlight 2 升级到 Silverlight 3 可能会报如下错误,程序中可能引用了 asp:silverlight 控件: Could not load file or assembly 'System.Web.Silverlight' or one of its dependencies. The system cannot find the file specified....
阅读全文