Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将数据表添加到 WPF(C#)上的数据网格,但是当列数超过 29 时,数据网格不会显示其他列的值。谁能帮我解决这个问题?谢谢你
DtGrResult.ItemsSource = tbl_main.AsDataView();
将数据网格的 HorizontalScrollBarVisibility 属性设置为Visible或Auto并确保每个列的 Frozen 属性设置为false。希望这对你有用。