其他分享
首页 > 其他分享> > 删除或添加最大化、最小化按钮 - 回复 "Tommy the CAT" 的问题

删除或添加最大化、最小化按钮 - 回复 "Tommy the CAT" 的问题

作者:互联网

删除或添加最大化、最小化按钮 - 回复 "Tommy the CAT" 的问题

问题来源: http://www.cnblogs.com/del/archive/2008/07/02/1202871.html#1242042

本例效果图:

o_8723.gif

代码文件:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Button2: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
  Self.BorderIcons := Self.BorderIcons - [biMinimize, biMaximize];
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
  Self.BorderIcons := Self.BorderIcons + [biMinimize, biMaximize];
end;

end.
设计时修改方法:

r_8722.png

posted on 2008-07-02 11:58  万一  阅读(2181)  评论(11)  编辑  收藏

标签:BorderIcons,end,Sender,Self,TForm1,TObject,CAT,最小化,Tommy
来源: https://blog.51cto.com/u_14617575/2747809