Silverlight(15) - 2.0数据之一次绑定,单向绑定, 双向绑定, INotifyPropertyChanged, 数据转换, 数据验证
2008-12-08 11:51:59 来源:WEB开发网2、Conversion.xaml(演示数据转换)
<!--引用转换器所在的命名空间-->
<UserControl x:Class="Silverlight20.Data.Conversion"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:custom="clr-namespace:Silverlight20.Data">
<UserControl.Resources>
<!--在资源中声明转换器-->
<custom:ColorEnumToBrush x:Key="converter" />
</UserControl.Resources>
<StackPanel HorizontalAlignment="Left">
<!--
Converter - 用于指定转换器
ConverterParameter - 转换器所使用的参数
ConverterCulture - 转换器所使用的区域信息
-->
<Ellipse x:Name="ellipse" Width="100" Height="50" MouseLeftButtonDown="ellipse_MouseLeftButtonDown"
Fill="{Binding ColorEnum, Converter={StaticResource converter}, ConverterParameter=10}"
/>
</StackPanel>
</UserControl>
Conversion.xaml.cs
Tags:Silverlight 数据 之一
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接