2024-03-13 22:23:17 +03:00
|
|
|
|
uses WPF;
|
|
|
|
|
|
|
|
|
|
|
|
begin
|
2024-07-12 20:54:52 +03:00
|
|
|
|
var dpanel := Panels.DockPanel.AsMainContent;
|
2024-03-13 22:23:17 +03:00
|
|
|
|
var b := Controls.Button('One',Width := 100).AddTo(dpanel,Dock.Left);
|
|
|
|
|
|
var b1 := Controls.Button('Two',Width := 100).AddTo(dpanel,Dock.Right);
|
|
|
|
|
|
var b2 := Controls.Button('Three',Height := 50).AddTo(dpanel,Dock.Top);
|
|
|
|
|
|
var b3 := Controls.Button('Four',Height := 50).AddTo(dpanel,Dock.Bottom);
|
|
|
|
|
|
var b4 := Controls.Button('Five').AddTo(dpanel);
|
|
|
|
|
|
b.Click += (o,e) -> begin
|
|
|
|
|
|
MainWindow.Close
|
|
|
|
|
|
end;
|
|
|
|
|
|
end.
|