gpt4 book ai didi

c# - 禁用除滚动之外的 DataGridView

转载 作者:太空狗 更新时间:2023-10-29 23:16:30 26 4
gpt4 key购买 nike

我如何配置 datagridview 以便用户只能在行中移动并使用滚动条,而不能使用其他...如果我禁用网格不允许我使用滚动

最佳答案

将您的 datagridview 设置为只读,这将禁用任何编辑。

dataGridView1.ReadOnly = true;

在你的处理程序中,做:

void dataGridView1_DoubleClick(object sender, EventArgs e)
{
if (dataGridView1.ReadOnly == true)
return;

// .. whatever code you have in your handler...
}

即使用户双击网格,也不会发生任何事情。

关于c# - 禁用除滚动之外的 DataGridView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12750518/

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