There is workaround that will enable you to view and edit that frame, but it involves some manual handling of both .pas and .fmx files
Let's say you have created frame with TMultiView component on it.
Your .pas file looks like:
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:
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
In order to successfully open your frame you have to open both files in some editor like Notepad.
Replace TFrame with TForm in your .pas file class declaration,
TFrame3 = class(TForm)
then cut out TFrame specific properties from .fmx file (and store it somewhere because you will need to copy them back after you completed the editing)
Size.Width = 561.000000000000000000
Size.Height = 408.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Now you can freely open your Frame (Form) in IDE, and do whatever you need with it. After you are done, save the files, close them in IDE and again edit .pas and .fmx files in Notepad.
TFrame3 = class(TFrame)
and replace TForm specific properties that IDE inserted with your original TFrame ones
Left = 0
Top = 0
ClientHeight = 480
ClientWidth = 640
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop, iPhone, iPad]
DesignerMasterStyle = 0