pascalabcnet/InstallerSamples/Graphics/GraphWPF/IsFixedSize.pas

8 lines
148 B
ObjectPascal
Raw Normal View History

2019-10-12 14:39:13 +03:00
uses GraphWPF;
begin
Window.IsFixedSize := True;
Print(Window.IsFixedSize);
Window.IsFixedSize := False;
Print(Window.IsFixedSize);
end.