1

这与如何在 gtk.paned 滑块的位置发生变化时得到通知的问题完全相同但在这种情况下,它是关于 GTK#

没有这样的 notify::position 东西。

我试过以下:

this.hpaned1.AcceptPosition += new AcceptPositionHandler(Changed);

this.hpaned1.ButtonReleaseEvent+= new ButtonReleaseEventHandler(Changed);

但两者都不起作用:(

4

2 回答 2

1

Documentation here:

this.hpaned1.AddNotification("position", new NotifyHandler(Changed));
于 2013-03-27T20:17:30.720 回答
0

这是GObject 上notify::position一种特定类型的信号。notify您应该仍然能够连接到该信号并检查它是否适用于该位置。

于 2013-03-25T17:31:19.410 回答