如何实现 windowXP风格的操作界面呢? ( 积分: 30 )

  • 主题发起人 blueline0451
  • 开始时间
B

blueline0451

Unregistered / Unconfirmed
GUEST, unregistred user!
请各位指教。
 
请各位指教。
 
用第三方控件
 
有好用的第三方控件吗?介绍一下呀..或是发给我吧,??,
summer_wk@hotmail.com
 
是啊 用第三方控件
 
有个叫什么什么什么(就是英文菜单的意思)XP的,放进去就可以了
 
xpmemu啊
我没有用控件
在Delphi 7 就有这个功能了,很好用...我现在正在用的的
-----------------------------------------------------
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
implementation
{$R *.dfm}
{$R windowsxp.res} // 在这里加入

end.
 
用xpwindow连界面都能xp化
 
有没有可以跨操作平台的控件。
 
怎么用啊。我试了一下没用啊
 
{$R windowsxp.res}的确不一般啊,多谢哈
 
http://www.tommstudio.com/ 上有一个非常不错的xpMenu控件。
 
{$R windowsxp.res}
只能在XP下 且为标准XP风格而不是经典风格的才可以
 
component one
dev express
 
用vclskin控件
 
用skin控件其它的一个属性就能解决你的问题,在ToolBar选项卡上
 
<?xml version=&quot;1.0&quot;
encoding=&quot;UTF-8&quot;
standalone=&quot;yes&quot;?>
<assembly xmlns=&quot;urn:schemas-microsoft-com:asm.v1&quot;
manifestVersion=&quot;1.0&quot;>
<assemblyIdentity
version=&quot;1.0.0.0&quot;
processorarchitecture=&quot;X86&quot;
name=&quot;Microsoft.windows.MyApplication&quot;
type=&quot;win32&quot;
/>
<description> Your application Description</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type=&quot;win32&quot;
name=&quot;Microsoft.Windows.Common-Controls&quot;
version=&quot;4.0.0.0&quot;
processorArchitecture=&quot;X86&quot;
publicKeyToken=&quot;4495b64144ccf1df&quot;
language=&quot;*&quot;
/>
</dependentAssembly>
</dependency>
</assembly>
将这些保存为manifest 文件,放在程序的根目录下面,然后就可以写程序了。
 
觉得还是SUIPACK好用,特别喜欢那个MAC界面。
 
来自:Avalon, 时间:2005-7-13 14:09:52, ID:3133083
{$R windowsxp.res}
只能在XP下 且为标准XP风格而不是经典风格的才可以
------------
我在经典风格下,也可以啊
 
SnPack for delphi7
 
顶部