如何做出像Foxmail、MSN的消息窗体的效果

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 greatsuperyoyonc 的 blog

procedure tform1.formcreate(sender: tobject);
begin
  form1.top := screen.height;
  form1.left := screen.width - form1.width;
  systmrtimer.enabled := true;
end;

procedure tform1.systmrtimertimer(sender: tobject);//systmrtimer是个timer
begin
  //请将interval属性设为10…
  form1.top := form1.top - 1;
  if form1.top = screen.height - form1.height then
    systmrtimer.enabled := false;
end;

end.

结合此文章可以做出更多效果……渐变、透明什么的…
http://blog.csdn.net/greatsuperyoyonc/archive/2004/07/23/50326.aspx

本文关键:如何做出像Foxmail、MSN的消息窗体的效果
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top