Form

GPALStatusStrip

Everything on Settings Every Control Takes applies here too. GPAL.StatusStrip builds one and WithText sets what it says. It docks to the bottom of the form wherever it appears in the chain, so it does not have to be added last. The Text property is what a workflow writes as it goes, and it is marshalled, so a background workflow can write to it while the form is up. GPAL.StatusStripFor(text) is the shorthand.

Examples

GPAL Fluent: High-level fluent C# API

//One status strip per form. It is the one control that does not need WithWidth or WithHeight, since it takes the width of the form and the height of its text.

GPALStatusStrip status = (GPALStatusStrip)GPAL.StatusStrip

.WithText("Ready")

.WithName("status");


status.Text = "Downloading...";

💬 Ask GPAL