检查TreeView ScrollBar可见性

时间:2013-03-26 22:28:39

标签: c# winforms treeview scrollbar

如何检查TreeView中的Vertical ScrollBar是否可见?

1 个答案:

答案 0 :(得分:6)

你必须做一些p / invoke来获得TreeView的风格。

    private const int GWL_STYLE = -16;
    private const int WS_VSCROLL = 0x00200000;
    [DllImport("user32.dll", ExactSpelling = false, CharSet = CharSet.Auto)]
    private static extern int GetWindowLong(IntPtr hWnd, int nIndex);

    bool VScrollVisible()
    {
        int style = GetWindowLong(myTreeView.Handle, GWL_STYLE);
        return  ((style & WS_VSCROLL) != 0);
    }