RunWindowDialog returns and runs a new [DialogStage] that is placed in a new system window on multi-window platforms, in the context of the given widget. See [Body.NewWindowDialog] to make a dialog window without running it.
(ctx Widget)
| 64 | // a new system window on multi-window platforms, in the context of the given widget. |
| 65 | // See [Body.NewWindowDialog] to make a dialog window without running it. |
| 66 | func (bd *Body) RunWindowDialog(ctx Widget) *Stage { |
| 67 | return bd.NewWindowDialog(ctx).Run() |
| 68 | } |
| 69 | |
| 70 | // NewWindowDialog returns a new [DialogStage] that is placed in |
| 71 | // a new system window on multi-window platforms, in the context of the given widget. |
no test coverage detected