There is a workaround that will allow you to view and edit this frame, but it uses manual processing of .pas and .fmx files.
Let's say you created a frame with the TMultiView component on it.
Your .pas file looks like this:
unit Unit3; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, FMX.MultiView; type TFrame3 = class(TFrame) MultiView1: TMultiView; private { Private declarations } public { Public declarations } end; implementation {$R *.fmx} end.
and your .fmx file looks like this:
object Frame3: TFrame3 Size.Width = 561.000000000000000000 Size.Height = 408.000000000000000000 Size.PlatformDefault = False TabOrder = 0 object MultiView1: TMultiView Size.Width = 250.000000000000000000 Size.Height = 408.000000000000000000 Size.PlatformDefault = False TabOrder = 0 end end
To successfully open the frame, you must open both files in some editor, for example, in Notepad. Replace TFrame with TForm in the class declaration of the .pas file,
TFrame3 = class(TForm)
then cut the specific TFrame properties from the .fmx file (and save it somewhere because you will need to copy them after editing is completed)
Size.Width = 561.000000000000000000 Size.Height = 408.000000000000000000 Size.PlatformDefault = False TabOrder = 0
Now you can freely open your frame (form) in the IDE and do whatever you need with it. Once you're done, save the files, close them in the IDE and edit the .pas and .fmx files in Notepad again.
TFrame3 = class(TFrame)
and replace the special TForm properties that the IDE inserted with your original TFrame
Left = 0 Top = 0 ClientHeight = 480 ClientWidth = 640 FormFactor.Width = 320 FormFactor.Height = 480 FormFactor.Devices = [Desktop, iPhone, iPad] DesignerMasterStyle = 0