GuiWindowBox method

GuiResult GuiWindowBox(
  1. RectangleD bounds,
  2. String? title
)

Window Box control, shows a window that can be closed

Implementation

GuiResult GuiWindowBox(
  RectangleD bounds,
  String? title,
) => run(
  () => _debugLabels.GuiWindowBox(bounds, title),
  () => .fromValue(_flat.GuiWindowBox(
    bounds,
    $.String$.ValueOrNull(title),
  )),
);