微软在UI领域中正在逐渐的展现其的作用。silverlight的推出就是一款跨平台的多媒体处理工具。可以帮助程序员实现许多功能。我们在这里先来了解一下silverlight control相关概念。#t#
在做控件的Template的时,有可能需要用到位图。但是直接把图片放到silverlight control中去,在编译运行时会有xamlprase错误。 这是控件没有找到图片资源报的错误。图片正确的写法应该是这样:
- < Image Source="/MyControl;
component/nasa.png" />完整的Template
代码如下:< ResourceDictionary - xmlns="http://schemas.microsoft.
com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.mic
rosoft.com/winfx/2006/xaml" - xmlns:vsm="clr-namespace:System.
Windows;assembly=System.Windows" - xmlns:my="clr-namespace:
MyControl;assembly=MyControl" - >
- < Style TargetType="my:MyQRCode">
- < Style.Setters>
- < Setter Property="Template">
- < Setter.Value>
- < ControlTemplate TargetType=
"my:MyQRCode"> - < Grid x:Name="Root">
- < Image Source="/MyControl;
component/nasa.png" /> - < /Grid>
- < /ControlTemplate>
- < /Setter.Value>
- < /Setter>
- < /Style.Setters>
- < /Style>
- < /ResourceDictionary>控件代码:
public class MyQRCode : Control - {
- public MyQRCode() : base() {
- DefaultStyleKey = typeof(MyQRCode);
- }
- public override void OnApplyTemplate()
- {
- base.OnApplyTemplate();
- }
- }
上面就是我们为大家介绍有关silverlight control相关创建方法。