博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Silverlight 2 DispatcherTimer和通过XAML创建UI元素
阅读量:5890 次
发布时间:2019-06-19

本文共 2144 字,大约阅读时间需要 7 分钟。

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

指定一条XAML内容字符串,为按照XML规则运行,XamlReader.Load()现在需要你在你的XAML文件中指定一个xmlns;

通过XamlReader.Load方法把元素在内存中编译(这样就可以得到UI元素对象的引用,也有可能是null,或者报错);
最后把它添加到容器的子控件中。
下面我们来制作一个简单的时钟,Page.xaml如下:

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 = "
00:00:00
"; 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”微信公众号

转载地址:http://mpbsx.baihongyu.com/

你可能感兴趣的文章
将HTML特殊转义为实体字符的两种实现方式
查看>>
jquery 保留两个小数的方法
查看>>
网站架构设计的误区
查看>>
Standard C++ Programming: Virtual Functions and Inlining
查看>>
iis 故障导致网站无法访问
查看>>
作业抄袭简单检测
查看>>
ASP.NET 回调技术(CallBack)
查看>>
Spark源码分析 – BlockManager
查看>>
JS中的this
查看>>
人生, 不要在别扭的事上纠结
查看>>
C的面向对象编程
查看>>
日志服务器架构设计
查看>>
使用Unity开发Android的几种调试方法
查看>>
C++ 基础笔记(一)
查看>>
编译内核出错:invalid option `abi=aapcs-linux' 解决办法
查看>>
System.Func<>与System.Action<>
查看>>
[翻译] EnterTheMatrix
查看>>
asp.net开源CMS推荐
查看>>
我所思考的生活,致半年后的自己
查看>>
csharp skype send message in winform
查看>>