稳扎稳打Silverlight(15)

稳扎稳打Silverlight(15) - 2.0数据之一次绑定,单向绑定,双向绑定,INotifyPropertyChanged,数据转换,数据验证

介绍

Silverlight 2.0 数据绑定:

Binding - 将绑定目标对象的属性与数据源联接起来

Source - 绑定的数据源

Mode - 绑定的数据流的方向 [System.Windows.Data.BindingMode枚举]

BindingMode.OneTime - 一次绑定。创建绑定时一次性地更新绑定目标对象的属性

BindingMode.OneWay - 单向绑定(默认值)。数据源的改变会自动通知到绑定目标对象的属性

BindingMode.TwoWay - 双向绑定。数据源或绑定目标对象的属性的值发生改变时会互相通知。显然,做数据验证的话一定要是双向绑定

Path - 需要绑定的属性名称

NotifyOnValidationError - 产生验证错误时是否触发 BindingValidationError 事件。默认值为 false

ValidatesOnExceptions - 产生验证错误时绑定引擎是否要报告错误。默认值为 false

INotifyPropertyChanged - 向客户端发出某一属性值已更改的通知

IValueConverter - 值转换接口,将一个类型的值转换为另一个类型的值。它提供了一种将自定义逻辑应用于绑定的方式

Convert - 正向转换器。将值从数据源传给绑定目标时,数据绑定引擎会调用此方法

ConvertBack - 反向转换器。将值从绑定目标传给数据源时,数据绑定引擎会调用此方法

BindingValidationError - 出现验证错误或解决上次验证错误则触发此事件

在线DEMO

http://www.cnblogs.com/webabcd/archive/2008/10/09/1307486.html

示例

1、NotifyProperty.xaml(演示INotifyPropertyChanged)

<UserControl x:Class="Silverlight20.Data.NotifyProperty"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
   <StackPanel HorizontalAlignment="Left">

    <!--
    Binding - 将绑定目标对象的属性与数据源联接起来(本例为将 Ellipse的Fill属性 与 MyColor的Brush属性 相联)
    Mode - Binding 的扩展属性之一,默认为 OneWay(单向绑定),即数据源的改变会自动通知到绑定目标对象的属性
    -->
    <Ellipse x:Name="ellipse" Width="100" Height="50" Fill="{Binding Brush, Mode=OneWay}" MouseLeftButtonDown="ellipse_MouseLeftButtonDown" />

  </StackPanel>
</UserControl>

NotifyProperty.xaml.cs

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.ComponentModel;

namespace Silverlight20.Data
{
  public partial class NotifyProperty : UserControl
  {
    MyColor _myColor;

    public NotifyProperty()
    {
      InitializeComponent();

      this.Loaded += new RoutedEventHandler(NotifyProperty_Loaded);
    }

    void NotifyProperty_Loaded(object sender, RoutedEventArgs e)
    {
      _myColor = new MyColor { Brush = new SolidColorBrush(Colors.Red) };

      // DataContext - FrameworkElement 做数据绑定时的数据上下文
      // 将 MyColor 对象绑定到 Ellipse
      ellipse.DataContext = _myColor;
    }

    private void ellipse_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    {
      // 鼠标按下后修改 MyColor 对象的属性
      // 如果MyColor实现了INotifyPropertyChanged接口,并且绑定目标的BindingMode为OneWay或者TwoWay的话则会自动通知到绑定目标
      if (_myColor.Brush.Color == Colors.Red)
        _myColor.Brush = new SolidColorBrush(Colors.Green);
      else
        _myColor.Brush = new SolidColorBrush(Colors.Red);
    }
  }

  /**//*
   * INotifyPropertyChanged - 向客户端发出某一属性值已更改的通知
   * 使用 OneWay 或者 TwoWay 的话必须要实现 INotifyPropertyChanged 接口
  */
  public class MyColor : INotifyPropertyChanged
  {
    private SolidColorBrush _brush;
    public SolidColorBrush Brush
    {
      get { return _brush; }
      set
      {
        _brush = value;
        if (PropertyChanged != null)
        {
          // 触发 PropertyChanged 事件,事件参数为属性名称
          PropertyChanged(this, new PropertyChangedEventArgs("Brush"));
        }
      }
    }

    // 声明一个 PropertyChanged 事件
    public event PropertyChangedEventHandler PropertyChanged;
  }
}

时间: 2024-11-03 02:24:47

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

稳扎稳打Silverlight 2.0系列文章索引

在线DEMO http://www.cnblogs.com/webabcd/archive/2008/10/09/1307486.html 1.稳扎稳打Silverlight(1) - 1.0实例之电子表 2.稳扎稳打Silverlight(2) - 1.0实例之支持录音和回放的钢琴(Silverlight+ASP.NET AJAX+DLINQ) 3.稳扎稳打Silverlight(3) - 2.0控件之Border, Button, Calendar, Canvas, CheckBox, Co

稳扎稳打Silverlight(10)

稳扎稳打Silverlight(10) - 2.0其它之Transform详解,以及UIElement和FrameworkElement的常用属性 介绍 Silverlight 2.0 其它: RenderTransform - 呈现位置的转换(System.Windows.Media.Transform类型) TranslateTransform - 平移转换 RotateTransform - 旋转转换(顺时针) ScaleTransform - 缩放转换 SkewTransform - 扭

稳扎稳打Silverlight(1) - 1.0实例之电子表

本系列文章导航 稳扎稳打Silverlight(1) - 1.0实例之电子表 稳扎稳打Silverlight(2) - 1.0实例之支持录音和回放的钢琴(Silverlight+ASP.NET AJAX+DLINQ) 稳扎稳打Silverlight(3) - 2.0控件之Border, Button, Calendar, Canvas, CheckBox, ComboBox 介绍用Silverlight 1.0实现一个基于客户端系统时间的电子表.参考:http://silverlight.net

稳扎稳打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.关于"被信任的应用程序"的简要概