-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed PageLayout behavior and now it's working properly. Now I have to work on improve it to be able to continue with the project.
- Loading branch information
1 parent
5bf7af3
commit 4a5de37
Showing
7 changed files
with
94 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
inherited PageLayout1: TPageLayout1 | ||
Caption = 'PageLayout1' | ||
DesignerMasterStyle = 0 | ||
inherited Layout1: TLayout | ||
inherited Rectangle1: TRectangle | ||
object Rectangle2: TRectangle | ||
Fill.Color = xFFB90606 | ||
Position.X = 88.000000000000000000 | ||
Position.Y = 88.000000000000000000 | ||
Size.Width = 50.000000000000000000 | ||
Size.Height = 50.000000000000000000 | ||
Size.PlatformDefault = False | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
unit eTasks.View.Teste; | ||
|
||
interface | ||
|
||
uses | ||
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, | ||
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, | ||
eTasks.View.PageLayout, FMX.Controls.Presentation, FMX.Objects, FMX.Layouts; | ||
|
||
type | ||
TPageLayout1 = class(TPageLayout) | ||
Rectangle2: TRectangle; | ||
private | ||
{ Private declarations } | ||
public | ||
{ Public declarations } | ||
end; | ||
|
||
var | ||
PageLayout1: TPageLayout1; | ||
|
||
implementation | ||
|
||
{$R *.fmx} | ||
|
||
end. |