Form

GPALStatusStrip

GPALStatusStrip renders a Windows status bar at the bottom of the form. Use it to show current operation status, progress messages, or brief feedback without interrupting the user's workflow. Update the displayed message by passing a new value through FillInFrom. StatusStrip is display-only and does not contribute to the form data output.

Examples

GPAL Fluent: High-level fluent C# API

//Update the status strip message during long operations by calling FillInFrom with a new status string. The message appears at the bottom of the form, keeping the user informed without blocking the main form area.

// Status strip at the bottom of a form

GPAL.Form

.WithTitle("Data Entry")

.WithFormControl((Input)GPAL.Input

.WithText("Record ID"))

.WithFormControl((StatusStrip)GPAL.StatusStrip

.WithText("Ready"))

.ShowDialog();

💬 Ask GPAL