Delphi:框架之间的通信

发布于 2024-11-24 21:44:41 字数 481 浏览 0 评论 0原文

框架之间和框架内如何通信? 例如:框架 1 和框架 2。

框架 2 位于框架 1 中。要将框架 2 插入到框架 1 中,我从 ToolPalette -> 添加框架。

type
  TFrame1 = class(TFrame)
  Frame22: TFrame2;

  var MyFrame1:TFrame1; // Now I can access to everything within a frame and from other frames too
implementation

但我在尝试访问 MyFrame1 并在框架 1 内或从其他框架中执行类似 MyFrame1.Button1.Enable 的操作时遇到错误: “异常类 EAccessViolation 带有消息“模块‘P1.exe’中地址 0084858C 处的访问冲突”

如何从帧 2 访问帧 1? MyFrame1->错误。

谢谢!

How to communicate among frames and within a frame?
For example: a Frame 1 and a Frame 2.

The frame 2 is in the frame 1. To insert the frame 2 into the frame 1 I add frames from ToolPalette ->

type
  TFrame1 = class(TFrame)
  Frame22: TFrame2;

  var MyFrame1:TFrame1; // Now I can access to everything within a frame and from other frames too
implementation

But I have an error trying to access to MyFrame1 and to do something like MyFrame1.Button1.Enable within the frame 1 or from other frames:
"Exception class EAccessViolation with a message 'Access violation at address 0084858C in module 'P1.exe'"

How to access to the frame 1 from the frame 2? MyFrame1->Error.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寄居者 2024-12-01 21:44:41

请删除全局变量声明:

var MyFrame1: TFrame1;

它通常对框架没有意义。

您可以将子框架的 Owner 类型转换为 TFrame1,例如:

implementation

uses
  FrameUnit1;

procedure TFrame2.Test;
begin
  if Owner is TFrame1 then
    ShowMessage(TFrame1(Owner).Name);
end;

Please delete the global variable declaration:

var MyFrame1: TFrame1;

It usually makes no sense for frames.

You can typecast the child frame's Owner to TFrame1, for example:

implementation

uses
  FrameUnit1;

procedure TFrame2.Test;
begin
  if Owner is TFrame1 then
    ShowMessage(TFrame1(Owner).Name);
end;
绅士风度i 2024-12-01 21:44:41

TOndrej 提到使用 Owner,但这通常是形式,而不是 Frame1。 Frame2 的父级应该是 Frame1,因此:

uses
  Frame1Unit;

procedure TFrame2.Test;
var
  C: TControl;
begin
  if Parent is TFrame1 then
    ShowMessage(TFrame1(Parent).Name)
  else 
    for C in Parent.Controls do
      if C is TFrame1 then
        ShowMessage(TFrame1(C).Name);
end; 

更新添加了使用 Parent.Controls 查找 TFrame1 的代码。

TOndrej mentioned using the Owner, but that is usually the form, not Frame1. The Parent of Frame2 should be Frame1, so:

uses
  Frame1Unit;

procedure TFrame2.Test;
var
  C: TControl;
begin
  if Parent is TFrame1 then
    ShowMessage(TFrame1(Parent).Name)
  else 
    for C in Parent.Controls do
      if C is TFrame1 then
        ShowMessage(TFrame1(C).Name);
end; 

Updated added code to use Parent.Controls to find a TFrame1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文