Property Modal
Modal
Determines whether the Toplevel is modal or not. If set to false
(the default):
- OnKeyDown(Key) events will propagate keys upwards.
- The Toplevel will act as an embedded view (not a modal/pop-up).
true
:
- OnKeyDown(Key) events will NOT propagate keys upwards.
- The Toplevel will and look like a modal (pop-up) (e.g. see Dialog.
public bool Modal { get; set; }