【delphi开源代码栏目提醒】:以下是网学会员为您推荐的delphi开源代码-Fmynuits.pas,希望本篇文章对您学习有所帮助。
unit Fmynuits;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TF_myunits = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
var
F_myunits: TF_myunits;
implementation
{$R *.dfm}
end.