学Silverlight 2系列(35):升级Silverlight 2 Beta 1应用程序到Beta 2
2008-10-09 11:39:45 来源:WEB开发网Image和ImageBrush变化
Beta 2中移除了ExceptionRoutedEventHandler而采用泛型的EventHandler来实现,并且移除了DownloadProgress属性。
Beta 1:
// Image class:
public event ExceptionRoutedEventHandler ImageFailed;
public double DownloadProgress { get; set;}
// ImageBrush class:
public event ExceptionRoutedEventHandler ImageFailed;
public double DownloadProgress { get; set;}
Beta 2:
// Image class:
Control加上了边框属性
public event EventHandler<ExceptionRoutedEventArgs> ImageFailed;
// ImageBrush class:
public event EventHandler<ExceptionRoutedEventArgs> ImageFailed;
在Beta 2中,Control基类提供了两个边框属性BorderBrush和BorderThickness,如果大家在Beta 1中自定义控件时定义了这两个属性,现在需要将其移除,并利用基类提供的属性。
public abstract class Control : FrameworkElement
ListBox变化
{
public Brush BorderBrush { get; set; }
public Thickness BorderThickness { get; set; }
}
在Beta 2中,ListBox移除了如下属性和事件:
SelectedItemsProperty
SelectionModeProperty
SelectedItems
SelectionMode
OnGotFocus(RoutedEventArgs)
OnItemContainerStyleChanged(Style, Style)
OnKeyDown(KeyEventArgs)
OnLostFocus(RoutedEventArgs)
OnSelectedItemsChanged(IList, IList)
OnIsSelectionActiveChanged(Boolean, Boolean)
Tags:Silverlight 系列 升级
编辑录入:爽爽 [复制链接] [打 印]- ››silverlight全屏显示图片
- ››Silverlight MVVM 模式(一) 切近实战
- ››升级nginx到1.2.0
- ››升级openssh和openssl
- ››升级你的ISO到Ubuntu 11.10 正式版
- ››Silverlight for Windows Phone 7开发系列(1):...
- ››Silverlight for Windows Phone 7开发系列(2):...
- ››Silverlight for Windows Phone 7开发系列(3):...
- ››Silverlight for Windows Phone 7开发系列(4):...
- ››升级 Ubuntu 10.04 内核到最新的 2.6.35 版
- ››Silverlight for Symbian
- ››升级到SQL Server 2005的12个必备提示
更多精彩
赞助商链接