`

在Silverlight2 Beta2中开发自定义控件

阅读更多

本文主要讲述如何在Silverlight2中开发一个自定义控件,我使用环境是VS2008 Silverlight2 Beta2。

一:创建Silverlight2 类库项目,如下图:

SLCusCon1

然后我们添加一个控件类,该可以继承自Control类,也可以继承自其他类比如ContentControl,ItemControl。我们继承自ContentControl,代码如下:

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace CarySLCustomControlLib
{
    public class CarySLCustomControl : ContentControl
    {}
}
其实现在已经做好了一个最简单的自定义控件,我们给给他一个控件模板就可以了。在Page.xaml的Grid中添加如下代码:
<custom:CarySLCustomControl>
    <custom:CarySLCustomControl.Template>
     <ControlTemplate>
        <Grid x:Name="RootElement">
           <Rectangle x:Name="BodyElement" Width="200" Height="100"
                                  Fill="Lavender" Stroke="Purple" RadiusX="16" RadiusY="16" />
           <TextBlock Text="Cary Click" HorizontalAlignment="Center"VerticalAlignment="Center" />
       </Grid>
     </ControlTemplate>
    </custom:CarySLCustomControl.Template>
</custom:CarySLCustomControl>




效果如下图:
SLCusCon2 

二:创建控件模板

下面我们为控件提供一个默认的控件模板,像类库项目中添加添加Generic.xaml文件,代码如下:
<ResourceDictionary 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:custom="clr-namespace:CarySLCustomControlLib;assembly=CarySLCustomControlLib"
       <Style TargetType="custom:CarySLCustomControl">
       <Setter Property="Template">
         <Setter.Value>
            <ControlTemplate TargetType="custom:CarySLCustomControl">
              <Grid x:Name="RootElement">
                <Rectangle x:Name="BodyElement" Width="200" Height="100"
                           Fill="LightCoral"  Stroke="Purple" RadiusX="16" RadiusY="16" />
                <TextBlock Text="Cary Click" HorizontalAlignment="Center"VerticalAlignment="Center" />
              </Grid>
            </ControlTemplate>
         </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>












向我们的控件类CarySLCustomControl的构造函数中添加如下代码:
 this.DefaultStyleKey = typeof(CarySLCustomControl);
在Page.xaml中我们只需要引用控件<custom:CarySLCustomControl/>,就可以达到上面一样的效果了。

三:模板绑定

我们在使用控件的时候都会做响应的属性设定,比如:
<custom:CarySLCustomControl Width="500" Height="500" Background="LightGreen"/>

但是你现在做该设置是不会生效的,还仍然使用控件模板的设定,我们可以在控件模板中通过使用 {TemplateBinding ControlProperty} 的标识扩展句法来绑定到控件的属性来实现,使用ContentPresenter控件可以灵活的设置各个属性。修改后的Generic.xaml的代码如下:

<ResourceDictionary
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:custom="clr-namespace:CarySLCustomControlLib;assembly=CarySLCustomControlLib"
      <Style TargetType="custom:CarySLCustomControl">
        <Setter Property="Width" Value="200" />
        <Setter Property="Height" Value="100" />
        <Setter Property="Background" Value="Lavender" />
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="custom:CarySLCustomControl">
                    <Grid x:Name="RootElement">             
                          <Rectangle x:Name="BodyElement"   Width="{TemplateBinding Width}"
                            Height="{TemplateBinding Height}"  Fill="{TemplateBinding Background}"
                            Stroke="Purple" RadiusX="16" RadiusY="16" />                      
                         <ContentPresenter Content="{TemplateBinding Content}"
                           HorizontalAlignment="Center" VerticalAlignment="Center"
                           FontSize="{TemplateBinding FontSize}" />
                   </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

Page.xaml中更改控件的属性如下:

  <custom:CarySLCustomControl Width="250" Height="150" Background="LightGreen">
     <custom:CarySLCustomControl.Content>
         <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
            <Ellipse Width="75" Height="75" Margin="10">
              <Ellipse.Fill>
                <RadialGradientBrush GradientOrigin="0.25,0.25">
                  <GradientStop Offset="0.25" Color="LightGray" />
                  <GradientStop Offset="1.0" Color="DarkGoldenrod" />
                </RadialGradientBrush>
              </Ellipse.Fill>
            </Ellipse>
            <TextBlock Text="Cary Click" VerticalAlignment="Center" />
    </StackPanel>
            </custom:CarySLCustomControl.Content>
</custom:CarySLCustomControl>
效果如下图:
SLCusCon3 

四:添加一个单击事件


WPF中支持向下和向下的事件路由,路由事件的路由可有效地向上遍历或向下遍历树,这要取决于该事件是隧道路由事件还是冒泡路由事件,而Silverlight中的路由事件只支持冒泡路由策略。下面我们为该控件添加一个单击事件,代码如下:

  public class CarySLCustomControl : ContentControl
  {
        public event RoutedEventHandler Click;

        public CarySLCustomControl()
        {       
            this.DefaultStyleKey = typeof(CarySLCustomControl);
            this.MouseLeftButtonUp += new MouseButtonEventHandler(CarySLCustomControl_MouseLeftButtonUp);           
        }

       void CarySLCustomControl_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
       {
        if (Click != null)
            Click(this, new RoutedEventArgs());
       }
}


现在我们就可以使用控件的单击事件了,Page.xaml中如下:
<custom:CarySLCustomControl Click="CarySLCustomControl_Click">
Page.xaml.cs中编写事件处理程序如下:
void CarySLCustomControl_Click(Object sender, RoutedEventArgs e)
{
     System.Windows.Browser.HtmlPage.Window.Alert("Click!");
}


运行后如下图:

SLCusCon4 


五:可视化状态


在Silverlight中微软引入一种新的模式来处理事件和用户进行交互,例如当鼠标经过控件时。控件可以从一种状态转换到另一种状态,我们下面就已从"normal" 状态到 "pressed" 状态来进行简单的说明。我们使用Silverlight中的Visual State Manager (VSM)来简化对可视化状态和可视化状态转换之间的处理。使用VisualState对象来定义不同的状态,Visual­Transition对象定义状态间的转换。使用Visual­StateManager类的静态方法GoToState来控制状态的装换。修改完成后的generic.xaml中的代码如下:

<ResourceDictionary 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:custom="clr-namespace:CarySLCustomControlLib;assembly=CarySLCustomControlLib"
  xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows">
    <Style TargetType="custom:CarySLCustomControl">
        <Setter Property="Width" Value="200" />
        <Setter Property="Height" Value="100" />
        <Setter Property="Background" Value="Lavender" />
        <Setter Property="Template">
        <Setter.Value>
           <ControlTemplate TargetType="custom:CarySLCustomControl">
             <Grid x:Name="RootElement">
               <vsm:VisualStateManager.VisualStateGroups>
               <vsm:VisualStateGroup x:Name="CommonStates">
               <vsm:VisualStateGroup.Transitions>
               <vsm:VisualTransition To="Normal" Duration="0:0:0.2"/>
               <vsm:VisualTransition To="MouseOver" Duration="0:0:0.2"/>
               </vsm:VisualStateGroup.Transitions>
               <vsm:VisualState x:Name="Normal" />
               <vsm:VisualState x:Name="MouseOver">
               <Storyboard>
                 <ColorAnimation Storyboard.TargetName="BodyElement"
                         Storyboard.TargetProperty="(Rectangle.Fill).(SolidColorBrush.Color)"
                         To="Pink" Duration="0" />
               </Storyboard>
               </vsm:VisualState>
               </vsm:VisualStateGroup>
               </vsm:VisualStateManager.VisualStateGroups>
               <Rectangle x:Name="BodyElement"
                    Width="{TemplateBinding Width}" Height="{TemplateBinding Height}"
                    Fill="{TemplateBinding Background}" Stroke="Purple" RadiusX="16" RadiusY="16" />
               <ContentPresenter Content="{TemplateBinding Content}" HorizontalAlignment="Center"
VerticalAlignment="Center" FontSize="{TemplateBinding FontSize}" /> </Grid> </ControlTemplate> </Setter.Value> </Setter> </Style> </ResourceDictionary>


在控件类CarySLCustomControl中添加如下代码:
public CarySLCustomControl()
{ 
      this.MouseEnter += new MouseEventHandler(CarySLCustomControl_MouseEnter);
      this.MouseLeave += new MouseEventHandler(CarySLCustomControl_MouseLeave);
}
 void CarySLCustomControl_MouseEnter(object sender, MouseEventArgs e)
 {
      VisualStateManager.GoToState(this, "MouseOver", true);
 }

 void CarySLCustomControl_MouseLeave(object sender, MouseEventArgs e)
{
       VisualStateManager.GoToState(this, "Normal", true);
 }
这样就可以了。到此一个最简单的控件就开发好了。


 

分享到:
评论

相关推荐

    TextBoxEx控件及源码,完美解决Silverlight2.0Beta中文件输入问题

    在开发基于Silverlight的应用程序时,常常会遇到各种挑战,特别是在处理用户输入,尤其是文件上传这类功能时。"TextBoxEx控件"就是为了解决Silverlight 2.0 Beta版本中文件输入问题而诞生的一个解决方案。这个控件...

    Telerik RadControls for Silverlight Beta2

    **Telerik RadControls for Silverlight Beta2** 是一个专门针对微软Silverlight开发平台的UI控件库,由Telerik公司提供。这个库包含了丰富的用户界面元素,旨在帮助开发者快速、高效地构建出交互性强、视觉效果优秀...

    DevExpress AgDataGrid for Silverlight 2 v8.2.2 Beta2 包含源代码

    在压缩包中,"AgDataGridSetup-8.2.2-Beta2.exe"是安装程序,用于在开发环境中部署和配置AgDataGrid控件。"Readme-说明.htm"文件通常包含了关于这个版本的详细信息,如新特性、已知问题、安装指南等,对于正确使用和...

    Silverlight 2系列

    在Silverlight 2 Beta 1版本中,引入了对多种编程语言的支持,包括Visual Basic、Visual C#、IronRuby和IronPython,这极大地扩展了开发者的工具箱。此外,新版本加强了数据和服务的交互能力,支持JSON、Web Service...

    DevExpress AgDataGrid for Silverlight 2 v8.2.3 Beta3 包含源代码

    在Silverlight 2版本中,AgDataGrid提供了丰富的功能,包括数据编辑、排序、分组、过滤、行选择和自定义列显示等,极大地增强了用户界面的交互性和数据管理能力。v8.2.3 Beta3是该产品的特定版本,可能包含了一些新...

    一步一步学Silverlight 2系列

    Silverlight 2 是微软推出的一种富互联网应用程序(RIA)开发技术,它在浏览器中提供类似桌面应用的交互体验。在本文中,我们将逐步学习如何使用Silverlight 2进行开发。 ### 1. 创建基本的Silverlight应用 #### ...

    silverlight beta2 从入门到精通(8),与html或aspx页交互(2)

    在Silverlight Beta2中,这些交互方式已经相当成熟,开发者可以根据需求选择最适合的方法。值得注意的是,尽管这些技术在早期版本就已经存在,但每个版本的Silverlight都会进行优化和改进,提供更好的性能和更简洁的...

    silverlight_5_beta_features

    尽管 Silverlight 5 Beta 包含了许多新功能,但还有一些特性并未在 Beta 版本中提供。这些特性将在最终版本中加入。 #### 法律声明 Silverlight 5 Beta 的使用须遵循相应的许可协议和条款。具体详情可参考随产品...

    Silverlight 2教程

    - **概念介绍**:Silverlight是一种由微软开发的跨浏览器的插件技术,它允许开发者在网页中创建丰富的交互式用户体验。随着Silverlight 2 Beta 1的发布,该平台变得更加强大,提供了更多的功能和支持。 - **步骤说明...

    一步一步学Silverlight 2系列(4)

    Silverlight 2是微软推出的一种富互联网应用程序平台,它在Beta 1版本中引入了多种新特性,包括对多种编程语言的支持(如Visual Basic、Visual C#、IronRuby、IronPython),以及对JSON、Web Service、WCF和Sockets...

    silverlight2.0Beta版TextBox输入中文解决方法

    这个解决方案展示了如何通过自定义控件和事件处理来解决框架本身存在的问题,也体现了在软件开发中对兼容性和用户体验的关注。同时,覃小春在注释中提供的博客链接(blog.csdn.net/colijian)可以为其他开发者提供更...

    一步一步学习Silverlight之基础知识篇

    在Silverlight 2中,开发者可以利用JSON、Web Service、Windows Communication Foundation (WCF)以及Socket支持来实现数据交互和网络通信,这大大扩展了其功能范围。JSON支持使得数据交换更加轻量级和高效,而WCF则...

    Silverlight探秘系列课程目录.txt

    针对已有一定基础的开发者,介绍Silverlight 2.0的高级应用技巧,如复杂动画设计、自定义控件开发、高性能数据处理等。 #### (29) Silverlight 2.0综合实践案例(Level200) 提供一系列完整的应用案例,覆盖多个行业...

    visifire_v3.5.2_beta2

    总的来说,Visifire_v3.5.2_beta2是一个强大的图表控件,它利用Silverlight或WPF的技术,提供灵活的数据可视化解决方案,并且遵循开源许可,方便开发者在不同项目中自由使用。通过示例和文档,开发者可以快速上手,...

    silverlight基

    对于初学者来说,**Silverlight 2 Beta 1**版本是一个很好的起点。在开始学习之前,你需要安装Visual Studio 2008,并创建一个新的Silverlight Application项目模板。创建完项目后,你可以将Silverlight应用程序嵌入...

Global site tag (gtag.js) - Google Analytics