Silverlight动态创建XAML对象和遍历对象
1.动态创建XAML对象
StringBuilder xaml = new StringBuilder();
xaml.Append("<TextBlock ");
xaml.Append("xmlns=\"http://schemas.microsoft.com/client/2007\" ");
xaml.Append(" FontSize=\"50\"");
xaml.Append(" FontWeight=\"Bold\" Text=\"动态创建XAML对象\"/>");
//创建textBlock对象
TextBlock textBlock =
(TextBlock)XamlReader.Load(xaml.ToString());
//添加TextBlock到parentCanvas
LayoutRoot.Children.Add(textBlock);
xaml.Append("xmlns=\"http://schemas.microsoft.com/client/2007\" ");
xaml.Append(" FontSize=\"50\"");
xaml.Append(" FontWeight=\"Bold\" Text=\"动态创建XAML对象\"/>");
//创建textBlock对象
TextBlock textBlock =
(TextBlock)XamlReader.Load(xaml.ToString());
//添加TextBlock到parentCanvas
LayoutRoot.Children.Add(textBlock);
2.遍历对象
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(LayoutRoot); i++)
{
var Child = VisualTreeHelper.GetChild(LayoutRoot, i);
if (Child is TextBox)
{
MessageBox.Show(((TextBox)Child).Name);
}
}
{
var Child = VisualTreeHelper.GetChild(LayoutRoot, i);
if (Child is TextBox)
{
MessageBox.Show(((TextBox)Child).Name);
}
}
作者:sy
出处:http://www.cnblogs.com/sydeveloper
QQ:522733724
本页版权归作者和博客园所有,欢迎转载,但未经作者同意必须保留此段声明,
且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利