This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
OldPascalProjects/Graphics/Controls/cc19_StatusBar.pas
2024-03-10 20:32:51 +03:00

17 lines
595 B
ObjectPascal

// Модуль Controls - StatusBar
uses Controls,GraphWPF;
begin
Window.Title := 'Модуль Controls - StatusBar';
var l := LeftPanel(150,Colors.Orange);
l.Tooltip := 'Измените размеры окна';
var sb := StatusBar(24,55);
sb.AddText('',55);
Button('Очистить поле W').Click := procedure -> sb.ItemText[0] := '';
Button('Очистить поле H').Click := procedure -> sb.ItemText[1] := '';
OnResize := () -> begin
sb.ItemText[0] := 'W=' + Window.Width.Round;
sb.ItemText[1] := 'H=' + Window.Height.Round;
end;
OnResize();
end.