gpt4 book ai didi

silverlight - 如何使 ContentControl 水平拉伸(stretch)

转载 作者:行者123 更新时间:2023-12-04 02:37:59 24 4
gpt4 key购买 nike

我已将 Horizo​​ntalAlignment 属性设置为拉伸(stretch),但没有帮助。

我需要该内容控件,因为在我的实际代码中,DataGrid 通过棱镜注入(inject)到内容控件中。

XAML:

<ContentControl HorizontalAlignment="Stretch">
<Grid>
<Controls:DataGrid ItemsSource="{Binding Persons}"></Controls:DataGrid>
</Grid>
</ContentControl>

代码隐藏:

 public partial class MainPage : UserControl
{
public List<Person> Persons { get; set; }

public MainPage()
{
Persons = new List<Person>();
Persons.Add(new Person { Name = "A",Age = 5});
Persons.Add(new Person { Name = "A", Age = 5 });
Persons.Add(new Person { Name = "A", Age = 5 });

InitializeComponent();
DataContext = this;
}
}


public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}

最佳答案

您是否尝试过将 Horizo​​ntalContentAlignment 属性设置为 Stretch

关于silverlight - 如何使 ContentControl 水平拉伸(stretch),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10188822/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com