以编程方式在网格中定位UserControl

时间:2014-02-19 14:25:25

标签: c# wpf

我正在从外部dll加载UserControls。 我的MainWindow包含一个网格,所有内容都放在网格中。

如何从代码隐藏中对GridCon中的UserControl进行定位?

以下是我当前添加控件的方法。

UserControl ucSupportButton = 
    new Bootstrapper().LoadUserControl("SC.Support.dll", "Button");
MainGrid.Children.Add(ucSupportButton );

1 个答案:

答案 0 :(得分:4)

如果要为Grid.Column和/或Grid.Row附加属性指定值,可以使用Grid静态方法:

Grid.SetRow(ucSupportButton, 1);
Grid.SetColumn(ucSupportButton , 1);