gpt4 book ai didi

c# - Infragistics Ultragrid - 选择最右边的列时不要移动到行下方

转载 作者:行者123 更新时间:2023-12-04 08:56:07 27 4
gpt4 key购买 nike

在最后一列上按右箭头键时,有什么方法可以强制 Infragistics Ultragrid 不移动到行下方?
例如,在表格下方,在具有“C”值(COL_1,第 1 行)的单元格中 - 如果我按向右箭头键,它会将我移到下面的行(D 值),而我想留在同一行,相同的单元格(如我已经到达行的“末尾”)

   COL_A | COL_B | COL_C
1 A B C
2 D ...

最佳答案

KeyDown UltraGrid 的事件也可用于实现此功能:

private void ultraGrid1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Right && sender is UltraGrid ug)
{
if ((ug.CurrentState & UltraGridState.CellLast) == UltraGridState.CellLast)
e.Handled = true;
}
}

关于c# - Infragistics Ultragrid - 选择最右边的列时不要移动到行下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63826512/

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