8 lines
148 B
ObjectPascal
8 lines
148 B
ObjectPascal
|
|
uses GraphWPF;
|
|||
|
|
|
|||
|
|
begin
|
|||
|
|
Window.IsFixedSize := True;
|
|||
|
|
Print(Window.IsFixedSize);
|
|||
|
|
Window.IsFixedSize := False;
|
|||
|
|
Print(Window.IsFixedSize);
|
|||
|
|
end.
|