Re: [us...@lists.monobjc.net] Overided KeyUp doesn't get called

2010-01-31 Thread Laurent Etiemble
Hello, You have forgotten to export the method override with the ObjectiveCMessage attribute. Without this attribute, the method is not exposed in the Objective-C runtime. [ObjectiveCMessage("keyUp:")] // <-- Mandatory attribute                public override void KeyUp (NSEvent

[us...@lists.monobjc.net] Overided KeyUp doesn't get called

2010-01-31 Thread Yvan Janssens
Hi, In the following source file, I get the following unexpected behavior: using System; using Monobjc; using Monobjc.Cocoa; namespace YvanSoftware.TwitMenu { [ObjectiveCClass("LengthField")] public class NSTextField_Length : NSTextField { const int maxLe