D3DImage.PixelWidth 属性

定义

获取 D3DImage 的宽度(以像素为单位)。

public:
 property int PixelWidth { int get(); };
public int PixelWidth { get; }
member this.PixelWidth : int
Public ReadOnly Property PixelWidth As Integer

属性值

D3DImage 的宽度(以像素为单位)。

示例

下面的代码示例演示如何使用 PixelWidth 属性在后台缓冲区中指定更改的区域。 有关详细信息,请参阅演练:在 WPF 中托管 Direct3D9 内容

d3dimg.Lock();
// Repeatedly calling SetBackBuffer with the same IntPtr is 
// a no-op. There is no performance penalty.
d3dimg.SetBackBuffer(D3DResourceType.IDirect3DSurface9, pSurface);
HRESULT.Check(Render());
d3dimg.AddDirtyRect(new Int32Rect(0, 0, d3dimg.PixelWidth, d3dimg.PixelHeight));
d3dimg.Unlock();

注解

通过调用 方法分配新的后台缓冲区时, SetBackBuffer 的值PixelWidth可能会更改。

适用于

另请参阅