WEB开发网
开发学院图形图像Flash 学Silverlight 2系列(35):升级Silverlight 2 B... 阅读

学Silverlight 2系列(35):升级Silverlight 2 Beta 1应用程序到Beta 2

 2008-10-09 11:39:45 来源:WEB开发网   
核心提示: public static class ToolTipService{public static readonly DependencyProperty ToolTipProperty;public static void SetToolTip(DependencyObject eleme

public static class ToolTipService
{
  public static readonly DependencyProperty ToolTipProperty;
  public static void SetToolTip(DependencyObject element, object value);
}

对于如何使用ToolTipService如下代码所示:

<Button ToolTipService.ToolTip="This is ToolTip text"/>
<Button Content="Button">
  <ToolTipService.ToolTip>
    <TextBlock Text="text"/>
 </ToolTipService.ToolTip>
</Button>

或者

ToolTipService.SetToolTip(myElementNeedingAToolTip, new TextBox());从控件中移除字体属性

在Beta 2中,字体属性都放在了Control基类中,所以如果你在自定义控件时定义了自己的字体属性,需要进行修改,这些属性包括:

FontFamily

FontSize

FontWeight

FontStyle

Foreground

FontStretch

现在如果在父元素中定义了它们,子元素将会自动继承这些属性,如:

<UserControl x:Class="TerryLee.SilverlightBeta2Example.Page"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Width="400" Height="300"
  FontSize="16"
  FontFamily="Trebuchet MS">
  <Grid x:Name="LayoutRoot" Background="White">
    ……
  </Grid>
</UserControl>
DatePicker和Calendar

DatePicker和Calendar控件的变化,如下所示:

上一页  1 2 3 4 5 6 7  下一页

Tags:Silverlight 系列 升级

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接