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 系列
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接