我遇到从渲染切换到Windows窗体控件以渲染到全屏的问题。 所以我把问题解决了一个小例子项目,它只包括交换链和设备初始化以及全屏切换。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using SharpDX;
using SharpDX.DXGI;
using SharpDX.Direct3D;
using SharpDX.Direct3D11;
using Device = SharpDX.Direct3D11.Device;
namespace ControlToFullscreenTest
{
static class Program
{
static Device device;
static SwapChain swapchain;
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Form1 form = new Form1();
Control control = form.pictureBox1; //Doesnt work
//Control control = form; //works
control.MouseClick += new MouseEventHandler(click);
SwapChainDescription sd = new SwapChainDescription()
{
BufferCount = 1,
Flags = SwapChainFlags.AllowModeSwitch,
IsWindowed = true, //false doesnt work too !
ModeDescription = new ModeDescription(control.ClientSize.Width, control.ClientSize.Height, Rational.Empty, Format.R8G8B8A8_UNorm),
OutputHandle = control.Handle,
SampleDescription = new SampleDescription(1, 0),
SwapEffect = SwapEffect.Discard,
Usage = Usage.RenderTargetOutput,
};
Device.CreateWithSwapChain(DriverType.Hardware, DeviceCreationFlags.None, sd, out device, out swapchain);
Factory DxgiFactory;
SharpDX.DXGI.Device d = device.QueryInterface<SharpDX.DXGI.Device>();
Adapter a = d.GetParent<Adapter>();
DxgiFactory = a.GetParent<Factory>();
DxgiFactory.MakeWindowAssociation(control.Handle, WindowAssociationFlags.None);
form.Show();
while(form.Focused)
{
swapchain.Present(0, PresentFlags.None);
Application.DoEvents();
}
}
static void click(object o, EventArgs args)
{
swapchain.ResizeBuffers(1, 1920, 1080, Format.Unknown, SwapChainFlags.AllowModeSwitch);
swapchain.SetFullscreenState(true, null);
}
}
}
交换机可以正常使用Windows窗体,但不能使用控件。
swapchain.SetFullscreenState(true, null);
抛出 HRESULT:[0x887A0001],模块:[SharpDX.DXGI],ApiCode:[DXGI_ERROR_INVALID_CALL / InvalidCall]
MSDN中没有任何内容。 它甚至无法使用控件在全屏幕中初始化Swapchain。 我知道我可以通过创建一个新窗口然后以全屏模式进行渲染来解决这个问题,但我想知道如果没有这种变化就可以实现。
如果有人有想法,信息或我找不到的链接,那会非常好。
答案 0 :(得分:0)
将SwapChain设置为FullScreen需要非子控件,因此您的图片框不满足此条件。
使用调试设备创建标志,当您尝试设置为全屏时,输出窗口中将弹出以下错误消息:
DXGI错误:IDXGISwapChain :: SetFullscreenState:不是全屏 允许用于目标子窗口的交换链。应用程序是 建议创建一个针对非子窗口的第二个交换链。 [ 其他错误#82:]