Unscary Code
I found a better approach, one that isn't as scary ...
builder.Define( mEntryColumn, aEditor, (column, editor) => column.AddNumericField(editor.Format) .BoundTo(editor, e => e.Value) .FocusBoundTo(editor, e => e.Focused));
The key difference is one of approach - instead of trying to subscribe to an arbitary event (which is difficult since you can't pass events around as data, only delegates), I went with subscribing to an arbitary property and keeping the gnarly bits under the covers.

Recent comments
4 weeks 15 hours ago
4 weeks 21 hours ago
4 weeks 1 day ago
4 weeks 1 day ago
8 weeks 1 day ago
9 weeks 16 hours ago
9 weeks 4 days ago
9 weeks 4 days ago
11 weeks 5 days ago
12 weeks 3 hours ago