DirectX 3D in a Picturebox or Panel on a Form C#.NET

Started by
0 comments, last by robpearmain 20 years ago
Hello, I am trying to make an app, with full windows functionality in C#.NET with Menus etc, and a small DX3D display area for the image. I am trying to use the Picturebox or Panel control to no avail. Does anyone have any example code I could use Many thanks
Rob
Advertisement
Hi,

I think you can use any Control... but I''ve only tested this with a Panel.

Just pass the panel object (in this case, myPanel) to the constructor of the D3D Device like this:

Device pDevice = new Device(0, DeviceType.Hardware, myPanel, CreateFlags.SoftwareVertexProcessing, presentParams);

Hope this helps.

Tim

This topic is closed to new replies.

Advertisement