gpt4 book ai didi

c# - 自动使列适合垂直滚动条的 ListView

转载 作者:行者123 更新时间:2023-11-30 22:04:57 29 4
gpt4 key购买 nike

我继承了一个 Listview 来执行一些小的更改,但我想改进 usercontrol 类或 Form 类中任何地方的设计,因为我对 Listview 的默认调整大小机制不满意。

在表单类中,我像这样调整最后一列(“下载”)的大小:

ColumnDownload.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize)

问题是,当(默认)滚动条出现在 ListView 中时,最后一列的大小不会自动固定/减小,因此水平和不需要的滚动条也会自动出现。

然后有人可以帮我解释一下当滚动条出现时如何自动修复最后一列的大小?我对此很迷茫。

注意:我需要说明的是,我并不是在寻找替代 LV,例如 ObjectListView

注意 2:我没有显示我的用户控件类,因为我目前没有执行任何自动调整大小改进,我不知道从哪里开始。

这是我正常的 ListView :

enter image description here

这是充满项目的同一个 ListView :

enter image description here

最佳答案

当(默认)滚动条出现在 ListView 中时,最后一列的大小不会自动固定/减小 ...“默认滚动条”表示垂直滚动。

AutoResize 不是 AutoFit。它用于根据标题文本范围或内容长度调整列的大小,而不是管理滚动条并且效果很好。如果它确实自动调整最后一列的大小,当最后一列是一个小的“好吗?”时我们会很生气。 type 列在被 AutoFitted 移除时变得不可读。

NativeMethods 类中的 PInvokes;这些吃滚动条并了解它们是否显示。

Public Const WS_VSCROLL As Integer = &H200000
Public Const WS_HSCROLL As Integer = &H100000
Friend Enum SBOrientation As Integer
SB_HORZ = &H0
SB_VERT = &H1
SB_CTL = &H2
SB_BOTH = &H3
End Enum

<DllImport("user32.dll")> _
Private Shared Function ShowScrollBar(ByVal hWnd As IntPtr,
ByVal wBar As Integer,
<MarshalAs(UnmanagedType.Bool)> ByVal bShow As Boolean
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function

<DllImport("user32.dll", SetLastError:=True)> _
Private Shared Function GetWindowLong(ByVal hWnd As IntPtr,
ByVal nIndex As Integer) As Integer
End Function

Friend Shared Function IsHScrollVisible(ByVal ctl As Control) As Boolean
Dim wndStyle As Integer = GetWindowLong(ctl.Handle, GWL_STYLE)
Return ((wndStyle And WS_HSCROLL) <> 0)
End Function

Friend Shared Function IsVScrollVisible(ByVal ctl As Control) As Boolean
Dim wndStyle As Integer = GetWindowLong(ctl.Handle, GWL_STYLE)
Return ((wndStyle And WS_VSCROLL) <> 0)
End Function

Friend Shared Sub ShowHideScrollBar(ByVal ctl As Control,
ByVal sb As SBOrientation, ByVal bShow As Boolean)
ShowScrollBar(ctl.Handle, sb, bShow)
End Sub

从最后一列中窃取 xx 个像素;如果 VScroll 消失,将像素放回原处。

基本上发生的事情是 ClientSizeChanged 触发两次:1) 当 VScroll 到达时,然后在 HScroll 作为 VScroll 的结果到达时再次触发。所以你必须处理事件两次。这会在第一遍中调整所需列的大小,并在第二遍中吃掉 HScroll。即使在第 1 步之后不再需要 HScroll,如果您不手动删除它,它也会短暂显示。

如果由于您的布局方式或用户调整列的大小而需要 HScroll,它无论如何都会调整最后一列的大小,但不会吃掉 HScroll。缺少用于检测何时不需要第一步的额外逻辑(您看不到它通常会执行此操作)。

警告:我不知道这如何或是否适用于这个第 3 方主题。我不认为主题可以像这样修改内部滚动条。

此外,这是为了在子类 LV 中使用,我知道您已经这样做了。对于其他人来说,通过对引用进行一些修改,这也应该适用于使用相关事件(例如 ClientSizeChanged)“推送”更改的表单,即使它在表单中留下了很多丑陋的代码。

这也没有包含在诸如 IF AutoFit 属性测试之类的东西中。

Private orgClient As Rectangle      ' original client size for comparing
Private _VScrollWidth As Integer

Private _resizedCol As Integer = -1
Private _VScroll As Boolean = False ' persistent Scroll flags
Private _HScroll As Boolean = False

' 3rd party???
_VScrollWidth = System.Windows.Forms.SystemInformation.VerticalScrollBarWidth

把它放在像 ISupportInitialize.EndInit 这样的地方:

orgClient = Me.ClientRectangle

Sub New 不是 orgClient 的好地方 - 尚未创建控件。 OnHandleCreated 可以,但如果没有 ISupportInitialize,我会在控件上调用一个新的 Sub 以改为从 Form_Load 设置它。如果您想在手动调整列大小后“重新启动”然后再次返回,这实际上很方便。例如:

' method on subclassed LV:   from form load: thisLV.ResetClientSize

Public Sub ResetClientSize
orgClient = Me.ClientRectangle
End Sub

' a helper:
Private Function AllColumnsWidth() As Integer
Dim w As Integer = 0
For Each c As ColumnHeader In Columns
w += c.Width
Next
Return w
End Function

' The Meat
Protected Overrides Sub OnClientSizeChanged(ByVal e As System.EventArgs)
Dim VScrollVis As Boolean
Dim HScrollVis As Boolean

' get who is Now Showing...local vars
VScrollVis = NativeMethods.IsVScrollVisible(Me)
HScrollVis = NativeMethods.IsHScrollVisible(Me)

' width change
Dim delta As Integer = (orgClient.Width - ClientRectangle.Width)

Dim TotalWidth As Integer = AllColumnsWidth()
If (TotalWidth < ClientRectangle.Width - _VScrollWidth) And
(_resizedCol = -1) Then
Exit Sub
End If

Me.SuspendLayout()

' If VScroll IS showing, but WASNT showing the last time thru here
' ... then we are here because VScroll just appeared.
' That being the case, trim the desired column
If VScrollVis And _VScroll = False Then
' a smarter version finds the widest column and resizes THAT one
_resizedCol = Columns.Count - 1

' we have to wait for the HScroll to show up
' to remove it
Columns(_resizedCol).Width -= (delta + 1)

End If

' HScroll just appeared
If HScrollVis And (delta = _VScrollWidth) Then

' HScroll popped up, see if it is needed
If AllColumnsWidth() <= orgClient.Width Then
' no, go away foul beast !
NativeMethods.ShowHideScrollBar(Me,
NativeMethods.SBOrientation.SB_HORZ, False)

_HScroll = False ' hopefully

' allows us to set it back if the VScroll disappears
orgClient = ClientRectangle
Else
' ToDo: use this to detect when none of this is needed
_HScroll = HScrollVis
End If
End If

' If VScroll ISNOT showing, but WAS showing the last time thru here
' ...then we are here because VScroll disappeared
If VScrollVis = False And _VScroll = True Then
' put back the pixels

If _resizedCol <> -1 Then
Columns(_resizedCol).Width += (_VScrollWidth + 1)
' reset column tracker
_resizedCol = -1
' reset to new compare size
orgClient = ClientRectangle
End If

End If

_VScroll = VScrollVis

Me.ResumeLayout()

End Sub

关于c# - 自动使列适合垂直滚动条的 ListView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24716049/

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