以下代码只能把图画在窗口上,我想在窗口上放一个picturebox,把图画进去,改怎么做?                PresentParameters presentParams = new PresentParameters();
                presentParams.Windowed = true; //不是全屏显示,在一个窗口显示
                presentParams.SwapEffect = SwapEffect.Discard;  //后备缓存交换的方式
                presentParams.EnableAutoDepthStencil = true;  //允许使用自动深度模板测试
                //深度缓冲区单元为16位二进制数
                presentParams.AutoDepthStencilFormat = DepthFormat.D16;
                device = new Device(0, DeviceType.Hardware, this, CreateFlags.SoftwareVertexProcessing, presentParams);
                //设置设备重置事件(device.DeviceReset)事件函数为this.OnResetDevice
                device.DeviceReset += new System.EventHandler(this.OnResetDevice);
                this.OnCreateDevice(device, null);//自定义方法,初始化Device的工作放到这个方法中
                this.OnResetDevice(device, null);//调用设备重置事件(device.DeviceReset)事件函数