【发布时间】:2023-12-22 04:04:01
【问题描述】:
我对旧版本 XE5 的 RAD Studio 10.2 有一个问题,它工作正常。 它给出了一个异常错误:
“读取Form1.FormFactor.Width属性时出错FormFactor.Width不存在”
当我尝试打开我的主窗体时。
unit FormEmail;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
FMX.Edit, IdMessage, IdBaseComponent, IdComponent, IdTCPConnection,
IdTCPClient, IdExplicitTLSClientServerBase, IdMessageClient, IdSMTPBase,
IdSMTP, System.StrUtils,IdSSLOpenSSL, FMX.Controls.Presentation, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Menus, Vcl.StdCtrls, Vcl.ComCtrls;
【问题讨论】:
-
您将 firemonkey FMX 设备与 VCL 设备混合使用。您不能同时使用两者。
-
@LURD 我认为这是一些新手可能会落入的陷阱。我认为值得将您的评论作为答案。
-
@DSM,好的,完成。
标签: delphi firemonkey