My Silverlight系列(1)——绝对定位下的控件动态添加操作
2009-04-25 12:05:06 来源:WEB开发网读过Scott Guthrie大神的Silverlight Layout Management之后,我也对Silverlight的布局管理有了一定的了解,个人以为无论是Canvas、StackPanel还是Grid,当我们只把它们当作容器,并在XAML中赋予其x:Name之后,都可以通过代码来动态添加控件并且进行定位。
Canvas是最简单的,我们可以在一个通过模板新建的Silverlight工程中,把它的Page.xaml改成如下的样子:
<UserControl x:Class="Test.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="800" Height="600">
<Canvas x:Name="LayoutRoot" Background="White" MouseLeftButtonDown="LayoutRoot_MouseLeftButtonDown">
</Canvas>
</UserControl>
然后在Page.xaml.cs中加入如下代码:
static int i = 0;
static int j = 0;
static bool canAdd = true;
private void LayoutRoot_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
if (canAdd)
{
Button button = new Button();
button.Width = 70;
button.Height = 30;
button.Content = "Button"+(j*8+i).ToString();
TranslateTransform myTranslateTransform = new TranslateTransform();
myTranslateTransform.X = i * 100;
myTranslateTransform.Y = j * 50;
button.RenderTransform = myTranslateTransform;
this.LayoutRoot.Children.Add(button);
if ((i+1) * 100 < 800)
i++;
else
{
j++;
i = 0;
}
if (j * 50 >= 600)
canAdd = false;
}
}
Tags:My Silverlight 系列
编辑录入:爽爽 [复制链接] [打 印]- ››MySql数据库插入式的多存储引擎机制
- ››MySQL和PDO测试对比
- ››MySQL大表中重复字段的查询效率方法
- ››MySQL中BLOB字段类型介绍
- ››myql缓存优化 实现命中率100%
- ››mysql 数据库查询随机数量条目的效率问题及解决办...
- ››MyEclips8.5搭建Android开发环境
- ››MySQL中两种索引Hash与B-Tree的区别
- ››MySql存储过程 带参数处理方式
- ››Silverlight for Windows Phone 7开发系列(1):...
- ››Silverlight for Windows Phone 7开发系列(2):...
- ››Silverlight for Windows Phone 7开发系列(3):...
更多精彩
赞助商链接