是否可以通过编程方式在Windows Vista上面的系统上触发Flip 3D mode
?
这与手动按 CTRL + WIN + TAB
答案 0 :(得分:18)
Shell
对象具有WindowSwitcher
方法,可以调用此模式。
以下是Delphi代码示例:
uses
ComObj;
procedure EnterWindowSwitcherMode;
var
Shell: OleVariant;
begin
try
Shell := CreateOleObject('Shell.Application');
Shell.WindowSwitcher;
finally
Shell := Unassigned;
end;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
if Win32MajorVersion >= 6 then // are we at least on Windows Vista ?
begin
try
EnterWindowSwitcherMode;
except
on E: Exception do
ShowMessage(E.ClassName + ': ' + E.Message);
end;
end;
end;
的更新强>
或者如此处提到的Norbert Willhelm,还有IShellDispatch5
对象接口实际上引入了WindowSwitcher
方法。所以这是另一个版本的相同......
下面的代码需要Shell32_TLB.pas单元,你可以在Delphi中创建这种方式(注意,你必须至少拥有第一次使用IShellDispatch5
接口的Windows Vista): / p>
代码:
uses
Shell32_TLB;
procedure EnterWindowSwitcherMode;
var
// on Windows Vista and Windows 7 (at this time :)
// is Shell declared as IShellDispatch5 object interface
AShell: Shell;
begin
try
AShell := CoShell.Create;
AShell.WindowSwitcher;
finally
AShell := nil;
end;
end;