标题:listview不要水平滚动条,但我垂直的滚动条,怎么做?
只看楼主
狂砍程序
Rank: 1
等 级:新手上路
帖 子:127
专家分:0
注 册:2007-9-27
结帖率:100%
 问题点数:0 回复次数:2 
listview不要水平滚动条,但我垂直的滚动条,怎么做?
listview不要水平滚动条,但我垂直的滚动条,怎么做?
搜索更多相关主题的帖子: listview 水平 滚动 
2007-09-27 22:54
guoxhvip
Rank: 8Rank: 8
来 自:聖西羅南看臺
等 级:贵宾
威 望:44
帖 子:4052
专家分:135
注 册:2006-10-8
得分:0 

好象没有具体的属性设置 只有个属性设置要么两个都显示 要么两个都不显示 ListBox倒可以单独设置


愛生活 && 愛編程
2007-09-28 02:54
wyqsht
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2009-8-19
得分:0 
写一个新蕾
public class ListViewEx : ListView
        {
            [System.Runtime.InteropServices.DllImport("user32.dll")]
            public static extern int ShowScrollBar(IntPtr hWnd, int iBar, int bShow);
            const int SB_HORZ = 0;
            const int SB_VERT = 1;
            protected override void WndProc(ref Message m)
            {
                if (this.View == View.List)
                {
                    ShowScrollBar(this.Handle, SB_VERT, 1);
                    ShowScrollBar(this.Handle, SB_HORZ, 0);
                }
                if (this.View == View.Details)
                {
                    ShowScrollBar(this.Handle, SB_VERT, 1);
                    ShowScrollBar(this.Handle, SB_HORZ, 0);
                }                 
                base.WndProc(ref m);
            }
        }
2009-08-19 15:12



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-173456-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.145902 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved