• silverlight将字符串转化为控件


     silverlight的System.Windows.Markup命名空间下,提供了XamlReader.Load()方法可以将字符串转换为控件。

    复制代码
    StringBuilder sbGrid = new StringBuilder(); sbGrid.Append("<Grid Width="150" Height="150" Background="Red" "); sbGrid.Append(" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation""); sbGrid.Append(" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">"); sbGrid.Append("</Grid>"); Grid grid = (Grid)XamlReader.Load(sbGrid.ToString()); LayoutRoot.Children.Add(grid);
    复制代码

    效果:

     注意:通过拼接字符串添加silverlight自带的控件时,务必加上

    xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation

      命名空间字符串,否则会提示无法找到命名空间。如果添加的是第三方的控件,可不用添加上述字符串,但必须加上控件的命名空间。比如:添加一个第三方的按钮

    StringBuilder sbButton = new StringBuilder(); sbButton.Append(" <telerik:RadButton xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" "); sbButton.Append(" Width="150" Height="50" Content="My Button" />"); RadButton radButton = (RadButton)XamlReader.Load(sbButton.ToString()); LayoutRoot.Children.Add(radButton);

    效果:

  • 相关阅读:
    爬取数据问题
    b站评论区爬取
    词云图制作
    情感分析
    一个progressbar widget
    jQuery ui effects
    在使用jQuery的时候不小心的内存泄漏
    在javascript中实现类似asp.net webcontrol中的render的方法
    jQuery 1.7的隐藏改动
    jQuery编写widget的一些窍门
  • 原文地址:https://www.cnblogs.com/zxbzl/p/3873560.html
Copyright © 2020-2023  润新知