我正在尝试使用带有以下代码的C ++ Builder在第二台显示器上显示FireMonkey表单:
void __fastcall ShowFormOnScreen( int OutMon )
{
MyForm->Top = 0;
MyForm->BorderStyle = bsNone;
MyForm->WindowState = wsNormal;
MyForm->Left = Screen->Monitors[OutMon]->Left;
MyForm->Height = Screen->Monitors[OutMon]->Height;
MyForm->Width = Screen->Monitors[OutMon]->Width;
MyForm->Show();
}
不幸的是,Screen
对象没有Monitors
属性,那么如何在FireMonkey中执行此操作?
答案 0 :(得分:4)
FMX尚未支持多显示器。您必须使用平台条件定义编写特定于平台的代码并切换行为。
答案 1 :(得分:2)
对于Windows,您可以使用EnumDisplayMonitors找到第二台显示器。 这需要一个回调函数,它将从每个找到的监视器接收信息。 下面的Delphi中的示例在第二个监视器上显示第二个Firemonkey表单,并使背景为黑色
// Callback function in function MonitorCount
function MonCountCB(hm: HMONITOR; dc: HDC; r: PRect; l: LPARAM): Boolean; stdcall;
var
mInfo : MonitorInfoEx;
// SecondaryRect: RECT;
begin
minfo.cbSize := sizeof(mInfo);
GetMonitorInfo(hm, @mInfo);
if mInfo.dwFlags <> MONITORINFOF_PRIMARY then
begin
MonitorForm.Left := mInfo.rcWork.Left;
MonitorForm.Top := mInfo.rcWork.Top;
MonitorForm.Width := mInfo.rcWork.Width;
MonitorForm.Height := mInfo.rcWork.Height;
end;
inc(Integer(pointer(l)^));
result := true;
end;
procedure TForm1.CornerButton1Click(Sender: TObject);
var
MonitorCount : Integer;
begin
EnumDisplayMonitors(0,nil,MonCountCB, Integer(@MonitorCount));
MonitorForm.Viewport3D1.Color := TAlphaColors.Black;
MonitorForm.Show;
end;
答案 2 :(得分:2)
在XE7中,现在有一个全局Screen变量,它有一个Screen.Displays []属性,可用于获取有关可用显示的信息。 Screen.DisplayCount属性可以告诉您有多少显示。你必须添加&#34; FMX.Forms&#34;你的USES条款使用它。