在 Gtk# TreeView 小部件中捕获 TAB

发布于 2024-12-01 20:07:53 字数 560 浏览 0 评论 0原文

我创建了一个 TreeView,它实际上可以称为 TableStringView:有各种可以输入文本的单元格。

我想通过按 TAB 键从一个单元格转到另一个单元格,而不是按 ENTER 键并单击另一个单元格,就像它是电子表格一样。

但是,当我向 TreeView 添加关键侦听器时,它失败了。 TAB 自然地用于在小部件之间进行更改,因此它在 TreeView 有机会执行任何操作之前被捕获。所以我正在寻找类似于 Windows 成员 AcceptsTab:

tvTable.AcceptsTab = true;

或者可能用于每列的 Gtk.CellRendererText 的东西:

var cell = new Gtk.CellRendererText();
cell.AcceptsTab = true;
//...
column.PackStart( cell, true );
tvTable.AppendColumn( column );

不幸的是,似乎不存在这样的成员。 我该怎么做才能在 TreeView 中捕获 TAB?

I have created a TreeView which is actually what it could be called a TableStringView: there are various cells in which text can be entered.

I'd like to go from one cell to another one by pressing TAB, instead of pressing ENTER and clicking in another cell, as if it were a spreadsheet.

However, when I add a key listener to the TreeView, it fails. The TAB is naturally used to change among widgets, so it is captured before the TreeView has the chance to do anything. So I am looking to something resembling the Windows member AcceptsTab:

tvTable.AcceptsTab = true;

Or maybe the Gtk.CellRendererText that will be used for each column:

var cell = new Gtk.CellRendererText();
cell.AcceptsTab = true;
//...
column.PackStart( cell, true );
tvTable.AppendColumn( column );

Unfortunately, no members like these appear to exist.
What can I do in order to capture TAB's in a TreeView?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙沙粒小 2024-12-08 20:07:53

您是否尝试过在按键处理程序中使用 Glib.ConnectBefore 属性?

/* ... */
cell.KeyPressEvent += onCellKeyPress;

[GLib.ConnectBefore]
void onCellKeyPress(object sender, EventArgs e)
{
/* ... */
}

Have you tried using the Glib.ConnectBefore attribute in the keypress handler?

/* ... */
cell.KeyPressEvent += onCellKeyPress;

[GLib.ConnectBefore]
void onCellKeyPress(object sender, EventArgs e)
{
/* ... */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文