Tab Key behavior

The KeyDown event of a TextField, ComoBox, … is recognizing a pressed TabKey and fires. - As expected.

A Canvas on the other Hand is not recognizing a pressed TabKey and is not fireing, although it is setting Focus to the next Control.

Is this expected behavior or is it a bug?
Thank’s

Do you have Canvas.AcceptTabs = True?

Ups, shame on me!
That was it.

What about Canvas.AcceptFocus?

With Canvas.AcceptFocus = True and Canvas.AcceptTabs = True, the Canvas.KeyDown event handler is being called for me when the Canvas has the focus.