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.
2024-03-10 20:32:51 +03:00

17 lines
773 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Модуль Controls - замена графической панели на элемент управления "Канва"
uses Controls,GraphWPF;
begin
Window.Title := 'Модуль Controls - замена графической панели на элемент управления "Канва"';
var left := LeftPanel(150,Colors.Orange);
var can := SetMainControl.AsCanvas;
can.Color := Colors.AntiqueWhite;
Button(100,100,'На Канве можно располагать элементы');
Button(50,300,'в любом месте,');
TextBlock(150,500,'указывая их координаты');
// Смена активной панели
SetActivePanel(left);
Button('Закрыть').Click := procedure Window.Close;
end.