我有一个包含至少10列的数据网格。但在加载数据时,水平滚动条不会显示。如何解决这个问题。
提前致谢。
P.S。我正在使用Visual Studio 2008
答案 0 :(得分:0)
试试这个:
列将Frozen属性设置为True。所有列都应该为false。
编辑:
单击DataGridView控件右上角的智能标记标志符号,然后选择“编辑列”。 从“选定列”列表中选择一列。 在Column Properties网格中,将Frozen属性设置为true。
exitstatus: None
flag_eof: False
pid: 17398
child_fd: 3
closed: False
timeout: 30
delimiter: <class 'pexpect.EOF'>
logfile: <open file '<stdout>', mode 'w' at 0x7f0581d9c150>
logfile_read: None
logfile_send: None
maxread: 2000
ignorecase: False
searchwindowsize: None
将DataGridViewColumn.Frozen属性设置为true:
dataGridView1.Columns(&#34; column&#34;)。Frozen = True
答案 1 :(得分:-1)
有一个名为ScrollBars
的属性,您可以在其中选择您想要查看的滚动条。默认值为Both
。