You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public MainWindow()
{
InitializeComponent();
LoadData();
}
private void LoadData()
{
var people = new List<Person>
{
new Person { Name = "Alice", Age = 30 },
new Person { Name = "Bob", Age = 25 },
new Person { Name = "Charlie", Age = 35 }
};
MyListView.ItemsSource = people;
}
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
Sandf123hehe
changed the title
ListView的ColumnHeaderFontSize无效
ListView的ColumnHeaderFontSize无效(所有的listview代码可以在这里直接复制)
Sep 22, 2024
No description provided.
The text was updated successfully, but these errors were encountered: