是否可以在没有行的 DataGrid 中显示水平滚动条?

发布于 2024-11-06 21:32:50 字数 103 浏览 0 评论 0原文

我希望允许用户水平滚动 DataGrid,即使 DataGrid 中没有行。只是为了让他们找出 DataGrid 中存在的所有列。可以做吗?

I would like to allow users to scroll a DataGrid horizontally even if there are no row(s) in the DataGrid. Just to allow them to find out all the columns that exists in DataGrid. Is it possible to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梦中楼上月下 2024-11-13 21:32:50

我不确定是否没有重新定义模板。我能够显示滚动条(通过直接访问它),但不能实际滚动。我最终采纳了类似帖子中的建议,即添加虚拟行并在没有行时将行高设置为 0。它很丑,但是很有效。

if (dtEnrollments.Rows.Count == 0)
{
    dtEnrollments.Rows.Add(dtEnrollments.NewRow());
    dgClassRoster.RowHeight = 0;
}
else
    dgRoster.RowHeight = defaultRowHeight;

dgRoster.ItemsSource = dtEnrollments.DefaultView;

I'm not sure if it is without redefining the template. I was able to get the scrollbar to show up (by accessing it directly) but not to actually scroll. I ended up going with the suggestion in a similar post of adding a dummy row and setting the row height to 0 when there are no rows. It's ugly, but it works.

if (dtEnrollments.Rows.Count == 0)
{
    dtEnrollments.Rows.Add(dtEnrollments.NewRow());
    dgClassRoster.RowHeight = 0;
}
else
    dgRoster.RowHeight = defaultRowHeight;

dgRoster.ItemsSource = dtEnrollments.DefaultView;
jJeQQOZ5 2024-11-13 21:32:50

尝试将 DataGrid 包装在 ScrollViewer 中,将 Horizo​​ntalScrollBarVisibility 强制设置为 Visible,并将以下属性添加到DataGrid

<DataGrid.Template>
    <ControlTemplate>                        
         <ItemsPresenter />
    </ControlTemplate>

</DataGrid.Template>

应该可以解决问题

Try to wrap your DataGrid in a ScrollViewer, with the HorizontalScrollBarVisibility forced to Visible, and add the following property to the DataGrid :

<DataGrid.Template>
    <ControlTemplate>                        
         <ItemsPresenter />
    </ControlTemplate>

</DataGrid.Template>

Should do the trick

聽兲甴掵 2024-11-13 21:32:50

您可以尝试将DataGridMaxWidth绑定到父元素(Control/Window/Grid)的ActualWidth /ETC。)。

You can try binding the MaxWidth of the DataGrid to the ActualWidth of the parent element (Control/Window/Grid/etc.).

热鲨 2024-11-13 21:32:50

您可以尝试使用 ScrollViewer.Horizo​​ntalScrollBarVisibility="Visible" 强制水平滚动条,或者如果失败,您可以禁用 DataGrid 内的滚动并将其包装到 ScrollViewer< /代码>。

You can try to force the horizontal scrollbar with ScrollViewer.HorizontalScrollBarVisibility="Visible" or if that fails you can disable scrolling inside DataGrid and wrap it into a ScrollViewer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文