delphi statusbar控件(状态栏) 10
状态栏有3个子栏目,怎么写出点击第3个子栏目里面的文字出现网页(只能时单击第3子栏目的文字才会出现效果,第一子栏目和第二单击没效果)...
状态栏有3个子栏目,怎么写出点击第3个子栏目里面的文字出现网页(只能时单击第3子栏目的文字才会出现效果,第一子栏目和第二单击没效果)
展开
展开全部
//statusbar1单击事件
var
Pt: TPoint;
I,Idx,PC,W,H: Integer;
R: TRect;
S: string;
begin
//先粗略取坐标,看是点在哪个格子上的
GetCursorPos(Pt);
Pt := StatusBar1.ScreenToClient(Pt);
Idx := -1;
R := Rect(0,0,0,StatusBar1.Height);
PC := StatusBar1.Panels.Count - 1;
for I := 0 to PC do
begin
R.Left := R.Right;
if I = PC then
R.Right := StatusBar1.Width
else
R.Right := R.Left + StatusBar1.Panels[i].Width;
if PtInRect(R,Pt) then
begin
Idx := I;
Break;
end;
end;
if Idx = -1 then
Exit;
//现根据文字宽度,确定在否在文字上
S := StatusBar1.Panels[Idx].Text;
W := StatusBar1.Canvas.TextWidth(S);
H := StatusBar1.Canvas.TextHeight(S);
InflateRect(R,-1,0);
if W < R.Right - R.Left then
case StatusBar1.Panels[Idx].Alignment of
taLeftJustify: R.Right := R.Left + W;
taRightJustify: R.Left := R.Right - W;
taCenter: InflateRect(R,- (R.Right - R.Left - W) div 2,0);
end;
if H < R.Bottom - R.Top then
InflateRect(R,0,-(R.Bottom - R.Top - H) div 2);
if not PtInRect(R,Pt) then
Exit;
//这里idx就是点中文字格子索引,自己选择,打开网页,这里是将文字做为网址打开,你可以自己维护一个网址表
ShellExecute(Application.Handle, nil, PChar(S), nil, nil, SW_SHOWNORMAL);
end;
var
Pt: TPoint;
I,Idx,PC,W,H: Integer;
R: TRect;
S: string;
begin
//先粗略取坐标,看是点在哪个格子上的
GetCursorPos(Pt);
Pt := StatusBar1.ScreenToClient(Pt);
Idx := -1;
R := Rect(0,0,0,StatusBar1.Height);
PC := StatusBar1.Panels.Count - 1;
for I := 0 to PC do
begin
R.Left := R.Right;
if I = PC then
R.Right := StatusBar1.Width
else
R.Right := R.Left + StatusBar1.Panels[i].Width;
if PtInRect(R,Pt) then
begin
Idx := I;
Break;
end;
end;
if Idx = -1 then
Exit;
//现根据文字宽度,确定在否在文字上
S := StatusBar1.Panels[Idx].Text;
W := StatusBar1.Canvas.TextWidth(S);
H := StatusBar1.Canvas.TextHeight(S);
InflateRect(R,-1,0);
if W < R.Right - R.Left then
case StatusBar1.Panels[Idx].Alignment of
taLeftJustify: R.Right := R.Left + W;
taRightJustify: R.Left := R.Right - W;
taCenter: InflateRect(R,- (R.Right - R.Left - W) div 2,0);
end;
if H < R.Bottom - R.Top then
InflateRect(R,0,-(R.Bottom - R.Top - H) div 2);
if not PtInRect(R,Pt) then
Exit;
//这里idx就是点中文字格子索引,自己选择,打开网页,这里是将文字做为网址打开,你可以自己维护一个网址表
ShellExecute(Application.Handle, nil, PChar(S), nil, nil, SW_SHOWNORMAL);
end;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
金山毒霸
2024-10-31 广告
2024-10-31 广告
大部分系统错误,是因为某些DLL文件丢失造成的,比如未安装DirectX9或DirectX 9.0组件已损坏、缺少Visual C ++库、未安装.net库。解决方法如下:一、 手动解决方法1、先确定电脑操作系统是多少位的,现在的电脑一般都...
点击进入详情页
本回答由金山毒霸提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询