当gtk.paned滑块的位置发生变化时如何通知? (C#)

时间:2013-03-25 15:32:26

标签: c# gtk

这与How to be informed when gtk.paned slider's position changed?完全相同,但在这种情况下,它与GTK#

有关

没有这样的notify :: position事。

我试过以下:

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

以及

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

但不起作用:(

2 个答案:

答案 0 :(得分:1)

文档here

this.hpaned1.AddNotification("position", new NotifyHandler(Changed));

答案 1 :(得分:-1)

notify::position是GObject上notify信号的特定类型。您仍然可以连接到该信号并检查它是否适合该位置。