Delphi自适应分辨率

上源码。

unit uMyClassHelpers;

interface

Uses

SysUtils,Windows,Classes,Graphics, Controls,Forms,Dialogs,

uMySysUtils;

Const //记录设计时的屏幕分辨率

OriWidth=1366;

OriHeight=768;

Type

TfmForm=Class(TForm) //实现窗体屏幕分辨率的自动调整

Private

fScrResolutionRateW: Double;

fScrResolutionRateH: Double;

fIsFitDeviceDone: Boolean;

fPosition:Array of TRect;

procedure FitDeviceResolution;

Protected

Property IsFitDeviceDone:Boolean Read fIsFitDeviceDone;

Property ScrResolutionRateH:Double Read fScrResolutionRateH;

Property ScrResolutionRateW:Double Read fScrResolutionRateW;

Public

Constructor Create(AOwner: TComponent); Override;

End;

TfdForm=Class(TfmForm) //增加对话框窗体的修改确认

Protected

fIsDlgChange:Boolean;

Public

Constructor Create(AOwner: TComponent); Override;

Property IsDlgChange:Boolean Read fIsDlgChange default false;

End;

implementation

Constructor TfmForm.Create(AOwner: TComponent);

begin

Inherited Create(AOwner);

fScrResolutionRateH:=1;

fScrResolutionRateW:=1;

Try

if Not fIsFitDeviceDone then

Begin

FitDeviceResolution;

fIsFitDeviceDone:=True;

End;

Except

fIsFitDeviceDone:=False;

End;

end;

procedure TfmForm.FitDeviceResolution;

Var

i:Integer;

LocList:TList;

LocFontSize:Integer;

LocFont:TFont;

LocCmp:TComponent;

LocFontRate:Double;

LocRect:TRect;

LocCtl:TControl;

begin

LocList:=TList.Create;

Try

Try

if (Screen.width<>OriWidth)OR(Screen.Height<>OriHeight) then

begin

Self.Scaled:=False;

fScrResolutionRateH:=screen.height/OriHeight;

fScrResolutionRateW:=screen.Width/OriWidth;

Try

if fScrResolutionRateH<fScrResolutionRateW then

LocFontRate:=fScrResolutionRateH

Else

LocFontRate:=fScrResolutionRateW;

Finally

ReleaseDC(0, GetDc(0));

End;

For i:=Self.ComponentCount-1 Downto 0 Do

Begin

LocCmp:=Self.Components[i];

If LocCmp Is TControl Then

LocList.Add(LocCmp);

If PropertyExists(LocCmp,'FONT') Then

Begin

LocFont:=TFont(GetObjectProperty(LocCmp,'FONT'));

LocFontSize := Round(LocFontRate*LocFont.Size);

LocFont.Size:=LocFontSize;

End;

End;

SetLength(fPosition,LocList.Count+1);

For i:=0 to LocList.Count-1 Do

With TControl(LocList.Items[i])Do

fPosition[i+1]:=BoundsRect;

fPosition[0]:=Self.BoundsRect;

With LocRect Do

begin

Left:=Round(fPosition[0].Left*fScrResolutionRateW);

Right:=Round(fPosition[0].Right*fScrResolutionRateW);

Top:=Round(fPosition[0].Top*fScrResolutionRateH);

Bottom:=Round(fPosition[0].Bottom*fScrResolutionRateH);

Self.SetBounds(Left,Top,Right-Left,Bottom-Top);

end;

i:= LocList.Count-1;

While (i>=0) Do

Begin

LocCtl:=TControl(LocList.Items[i]);

If LocCtl.Align=alClient Then

begin

Dec(i);

Continue;

end;

With LocRect Do

begin

Left:=Round(fPosition[i+1].Left*fScrResolutionRateW);

Right:=Round(fPosition[i+1].Right*fScrResolutionRateW);

Top:=Round(fPosition[i+1].Top*fScrResolutionRateH);

Bottom:=Round(fPosition[i+1].Bottom*fScrResolutionRateH);

LocCtl.SetBounds(Left,Top,Right-Left,Bottom-Top);

end;

Dec(i);

End;

End;

Except on E:Exception Do

Raise Exception.Create('进行屏幕分辨率自适应调整时出现错误'+E.Message);

End;

Finally

LocList.Free;

End;

end;

{ TfdForm }

constructor TfdForm.Create(AOwner: TComponent);

begin

inherited;

fIsDlgChange:=False;

end;

end.

上面包括两个类,一个是普通窗体类,一个是其子类对话框型窗体类。在实际应用过程中只要自己创建的窗体类继承自以上两个类中的一个,例如 TForm1 = class(TfdForm),则不需添加任何源码,设计出窗体会自动调整其上控件的尺寸,以适应不同的屏幕分辨率。

转载自:https://www.cnblogs.com/FuYan/p/4972894.html 感谢“ 倾天

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值