Firemonkey (RadStudio 10.3.2 を使用) は初めてで、埋め込まれた子フォームのリストボックス コントロールを更新しようとしています。ただし、リストボックス (ListBox1) のいずれかのプロパティにアクセスしようとすると、「アクセスできない値」として表示されます。非常に単純なものが欠けていると確信しています。すべての助けに感謝します!ありがとうございました!
私の問題を説明するために、次の単純化されたアプリケーションを作成しました。
Project1 アプリケーションの初期化:
program Project1;
uses
System.StartUpCopy,
FMX.Forms,
Unit1 in 'Unit1.pas' {Form1},
Unit2 in 'Unit2.pas' {Form2};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Unit1.パス:
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.Controls.Presentation, FMX.StdCtrls;
type
TForm1 = class(TForm)
Panel1: TPanel;
Button1: TButton;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
procedure EmbedForm(AParent:TControl; AForm:TCustomForm);
end;
var
Form1: TForm1;
implementation
{$R *.fmx}
uses Unit2;
procedure TForm1.FormCreate(Sender: TObject);
begin
// Embed Scenarios Form
EmbedForm(Panel1, TForm2.Create(Self));
Panel1.Visible := true;
end;
procedure TForm1.Button1Click(Sender: TObject);
var
data_strings: array of string;
begin
// Assign strings
SetLength(data_strings, 2);
data_strings[0] := 'Hello';
data_strings[1] := 'World';
// Load strings
Form2.ListBox1.Items.Add(data_strings[0]);
Form2.ListBox1.Items.Add(data_strings[1]);
end;
procedure TForm1.EmbedForm(AParent: TControl; AForm: TCustomForm);
begin
while AForm.ChildrenCount>0 do
AForm.Children[0].Parent:=AParent;
end;
end.
Unit2.パス:
unit Unit2;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Layouts,
FMX.ListBox;
type
TForm2 = class(TForm)
ListBox1: TListBox;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form2: TForm2;
implementation
{$R *.fmx}
end.
Form2.ListBox1 プロパティは、メイン フォームのコードからアクセスできません。Button1Click イベントを参照してください。子フォーム (Unit2) を使用する親フォーム (Unit1) があります。
有効な可視コンポーネントにアクセスできない理由がわかりません。私のモーダル フォームにはこの問題はありませんでしたので、埋め込まれた子フォームに関係していると思います。