以编程方式设置文本块边距

时间:2012-03-14 18:17:59

标签: c# wpf

我想知道如何以编程方式设置文本块的边距?我有一个字符串列表,我想分配给每个文本块,并为每个文本块设置动画,每个文本块之间有一个间距。刚才,所有的文本块都在同一行,所以我无法弄清楚文本说的是什么。

foreach (var i in item.Items)
{
    TextBlock tb = new TextBlock();
    tb.Height = 50;
    tb.Width = 900;
    tb.Text = i.Title + "\n";

    SlideDown(tb);
    canvas.Children.Add(tb);
}

public void SlideDown(FrameworkElement uc)
{
    ThicknessAnimation tAnimation = new ThicknessAnimation();
    tAnimation.Duration = new Duration(TimeSpan.FromSeconds(5.0));
    tAnimation.From = new Thickness(0,0,0,0);
    tAnimation.To = new Thickness(0, 500, 0, 500);
    Storyboard.SetTarget(tAnimation, uc);
    Storyboard.SetTargetProperty(tAnimation, new PropertyPath(FrameworkElement.MarginProperty));
    Storyboard storyboard = new Storyboard();
    storyboard.Children.Add(tAnimation);
    storyboard.Begin(uc);
}

2 个答案:

答案 0 :(得分:19)

您可以像这样设置Margin属性:

  double left = 1, top = 2, right = 3, bottom = 4;
  textBlock.Margin = new Thickness(left, top, right, bottom);

或者您可以指定适用于以上所有内容的单个值:

  double all = 5;
  textBlock.Margin = new Thickness(all);

答案 1 :(得分:3)

请参阅保证金属性here

tb.Margin = new Thickness(10);