这与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);
但不起作用:(
答案 0 :(得分:1)
文档here:
this.hpaned1.AddNotification("position", new NotifyHandler(Changed));
答案 1 :(得分:-1)
notify::position
是GObject上notify
信号的特定类型。您仍然可以连接到该信号并检查它是否适合该位置。