• 同步窗体移动 FormMove




    方法2


    unit Unit1;

    interface

    uses
      Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
      System.Classes, Vcl.Graphics,
      Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls;

    type
      TForm1 = class(TForm)
        Panel1: TPanel;
        procedure FormShow(Sender: TObject);
      private
        procedure WMMOVE(var Msg: TMessage); message WM_MOVE;
      public
        { Public declarations }
      end;

    var
      Form1: TForm1;

    implementation

    {$R *.dfm}

    uses Unit2;

    procedure TForm1.FormShow(Sender: TObject);
    begin
      Form2.Visible := true;
    end;

    procedure TForm1.WMMOVE(var Msg: TMessage);
    begin
      inherited;
      try
        Form2.Parent:=Panel1;
        Form2.Left:=0;
        Form2.Top:=0;
        Form2.Align:=alClient;

      except

      end;
    end;

    end.


    方法1



      private
       procedure WMMOVE(var Msg: TMessage);  message WM_MOVE;

    var
      Form1: TForm1;

    implementation

    {$R *.dfm}

    uses Unit2;

    procedure TForm1.WMMOVE(var Msg: TMessage);
    begin
      inherited;
      try
        form2.Width :=  Panel1.Width;
        form2.Height := Panel1.Height;

        form2.left := Form1.left + Panel1.Left;
        form2.Top := Form1.Top + Panel1.Top;
      except

      end;
    end;







  • 相关阅读:
    695. 岛屿的最大面积(深搜)
    147. 对链表进行插入排序(排序)
    566. 重塑矩阵(模拟)
    238. 除自身以外数组的乘积(前后缀积)
    29.Java基础_接口
    C++ STL queue
    C++ STL stack
    C++ STL string
    C面向接口编程和C++多态案例
    单例模式入门
  • 原文地址:https://www.cnblogs.com/xe2011/p/3717696.html
Copyright © 2020-2023  润新知