Silverlight 2 DispatcherTimer和通过XAML创建UI元素

简介:

XAML标签元素在silverlight运行时被转换成相应的对象,通过XamlReader类的Load方法,动态创建UI元素:

指定一条XAML内容字符串,为按照XML规则运行,XamlReader.Load()现在需要你在你的XAML文件中指定一个xmlns;
通过XamlReader.Load方法把元素在内存中编译(这样就可以得到UI元素对象的引用,也有可能是null,或者报错);
最后把它添加到容器的子控件中。
下面我们来制作一个简单的时钟,Page.xaml如下:

<UserControl x:Class="OpenXmlVideo2.Page"
    xmlns="http://schemas.microsoft.com/client/2007"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="187" Height="97">
    <Canvas x:Name="EClock" Height="97" Width="187" >
    </Canvas>
</UserControl>

Page.xaml.cs如下:

using System;
using System.Collections.Generic;
using System.Linq;
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.Windows.Markup; 

namespace OpenXmlVideo2
{
    public partial class Page : UserControl
    {
        private TextBlock textBlock1;
        private System.Windows.Threading.DispatcherTimer timer; 

        public Page()
        {
            InitializeComponent();
            this.Loaded += new RoutedEventHandler(Page_Loaded); 

        } 

        void Page_Loaded(object sender, RoutedEventArgs e)
        {
            string xaml = string.Empty;
            xaml = "<TextBlock xmlns=\"http://schemas.microsoft.com/client/2007\" Margin=\"14,11,19,12\" Name=\"textBlock1\" FontFamily=\"Time New Roman\" FontSize=\"40\">00:00:00</TextBlock>";
            textBlock1 = XamlReader.Load(xaml) as TextBlock;

           //Loaded就是TextBlock的加载事件,那么里面的textBlock1_Loaded自然就是事件处理程序的名称。
            textBlock1.Loaded += new RoutedEventHandler(textBlock1_Loaded);

           //改变附加属性(attached properties),必须使用SetValue方法
            textBlock1.SetValue(Canvas.LeftProperty, 2);
            textBlock1.SetValue(Canvas.TopProperty, 2);

            //加把textBlock1对象做为子对象添加到画布(和asp.net页的控件树的道理相拟)

            this.EClock.Children.Add(textBlock1);

        } 

        void textBlock1_Loaded(object sender, RoutedEventArgs e)
        {

            //使用了DispatcherTimer,我把间隔设置为1秒。该计时器的间隔事件也是Tick事件
            timer = new System.Windows.Threading.DispatcherTimer();
            timer.Interval = new TimeSpan(0, 0, 1);   //间隔1秒
            timer.Tick += new EventHandler(timer_Tick);
            timer.Start();
        } 

        void timer_Tick(object sender, EventArgs e)
        {
            textBlock1.Text = DateTime.Now.ToLongTimeString();
        }
    }
}

运行的结果如下:

一个简单的电子钟做好了。主要是学习两项内容:通过XamlReader类的Load方法,动态创建UI元素和DispatcherTimer。

本文来自云栖社区合作伙伴“doNET跨平台”,了解相关信息可以关注“opendotnet”微信公众号

目录
相关文章
|
4月前
|
开发框架 前端开发 JavaScript
在Winform界面使用自定义用户控件及TabelPanel和StackPanel布局控件
在Winform界面使用自定义用户控件及TabelPanel和StackPanel布局控件
|
机器人 Windows
RPA.UI.Win32.InputText方法
RPA.UI.Win32.InputText方法
72 1
|
存储 C# Windows
【UiPath2022+C#】UiPath参数
变量和参数,或者说是如何在各种活动和工作流之间收集、存储、处理和传递数据。
【UiPath2022+C#】UiPath参数
|
存储 C# 开发者
【UiPath2022+C#】UiPath变量
变量和参数,或者说是如何在各种活动和工作流之间收集、存储、处理和传递数据;
【UiPath2022+C#】UiPath变量
|
存储 机器人 数据处理
【UiPath2022+C#】UiPath 循环
循环是指根据指定条件重复执行一组操作。
【UiPath2022+C#】UiPath 循环
|
C#
WPF中,怎样将XAML代码加载为相应的对象?
原文:WPF中,怎样将XAML代码加载为相应的对象? 在前面“在WPF中,如何得到任何Object对象的XAML代码?”一文中,我介绍了使用System.Windows.Markup.XamlWriter.Save(objName)得到任何Object对象的XAML代码。
927 0
|
C#
WPF xaml中列表依赖属性的定义
原文:WPF xaml中列表依赖属性的定义 列表内容属性 如上图,是一个列表标题排序控件,我们需要定义一个标题列表,从而让调用方可以自由的设置标题信息。 在自定义控件时,会遇到列表依赖属性,那么该如何定义呢? 下面是错误的定义方式: 1 /// 2 /// 标识 的依赖项属性。
1103 0
|
C# 容器 存储
WPF元素绑定
原文:WPF元素绑定 数据绑定简介:数据绑定是一种关系,该关系告诉WPF从源对象提取一些信息,并用这些信息设置目标对象的属性。目标属性是依赖项属性。源对象可以是任何内容,从另一个WPF元素乃至ADO.NET数据对象(如DataTable)或自行创建出数据对象。
877 0
|
C#
WPF中自定义的DataTemplate中的控件,在Window_Loaded事件中加载机制初探
原文:WPF中自定义的DataTemplate中的控件,在Window_Loaded事件中加载机制初探         最近因为项目需要,开始学习如何使用WPF开发桌面程序。
1561 0
|
C# Windows
在WPF中,如何得到任何Object对象的XAML代码?
原文:在WPF中,如何得到任何Object对象的XAML代码? 在WPF中,可以使用System.Windows.Markup.XamlWriter.Save(objName)得到任何Object对象的XAML代码。
816 0