8 instantiations of RenderTargetBitmap
PresentationCore (1)
Core\CSharp\System\Windows\Media\Imaging\RenderTargetBitmap.cs (1)
116
return new
RenderTargetBitmap
();
PresentationFramework (5)
src\Framework\MS\Internal\AppModel\IconHelper.cs (1)
188
var bmp = new
RenderTargetBitmap
((int)renderSize.Width, (int)renderSize.Height, 96, 96, PixelFormats.Pbgra32);
src\Framework\MS\Internal\Ink\PenCursorManager.cs (1)
311
new
RenderTargetBitmap
(width, height,
src\Framework\System\Windows\Controls\Primitives\DocumentPageView.cs (1)
980
RenderTargetBitmap renderTargetBitmap = new
RenderTargetBitmap
((int)pageVisualRect.Width, (int)pageVisualRect.Height, 96.0, 96.0, PixelFormats.Pbgra32);
src\Framework\System\Windows\Documents\RubberbandSelector.cs (1)
301
RenderTargetBitmap data = new
RenderTargetBitmap
((int)(scale * _selectionRect.Width), (int)(scale * _selectionRect.Height),dpi,dpi, PixelFormats.Pbgra32);
src\Framework\System\Windows\Documents\WpfPayload.cs (1)
443
RenderTargetBitmap rtb = new
RenderTargetBitmap
((int)(di.Width * dpi.DpiScaleX), (int)(di.Height * dpi.DpiScaleY),
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemWrapper.cs (1)
263
var renderTargetBitmap = new
RenderTargetBitmap
(pixelWidth, pixelHeight, dpiX, dpiY, PixelFormats.Pbgra32);
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
1180
RenderTargetBitmap renderBitmap = new
RenderTargetBitmap
(imageWidth, imageHeight, DPI, DPI, PixelFormats.Pbgra32);
24 references to RenderTargetBitmap
PresentationCore (11)
Core\CSharp\System\Windows\Media\Imaging\BitmapVisualManager.cs (2)
42
public BitmapVisualManager(
RenderTargetBitmap
bitmapTarget)
178
private
RenderTargetBitmap
_bitmapTarget = null;
Core\CSharp\System\Windows\Media\Imaging\RenderTargetBitmap.cs (9)
128
private void CopyCommon(
RenderTargetBitmap
sourceBitmap)
174
RenderTargetBitmap
sourceBitmap = (
RenderTargetBitmap
)sourceFreezable;
186
RenderTargetBitmap
sourceBitmap = (
RenderTargetBitmap
)sourceFreezable;
198
RenderTargetBitmap
sourceBitmap = (
RenderTargetBitmap
)sourceFreezable;
210
RenderTargetBitmap
sourceBitmap = (
RenderTargetBitmap
)sourceFreezable;
PresentationFramework (11)
src\Framework\MS\Internal\AppModel\IconHelper.cs (1)
188
var
bmp = new RenderTargetBitmap((int)renderSize.Width, (int)renderSize.Height, 96, 96, PixelFormats.Pbgra32);
src\Framework\MS\Internal\Ink\PenCursorManager.cs (4)
244
RenderTargetBitmap
rtb = RenderVisualToBitmap(cursorDrawingVisual, width, height);
306
private static
RenderTargetBitmap
RenderVisualToBitmap(Visual visual, int width, int height)
310
RenderTargetBitmap
rtb =
329
private static byte[] GetPixels(
RenderTargetBitmap
rtb, int width, int height)
src\Framework\System\Windows\Controls\Primitives\DocumentPageView.cs (1)
980
RenderTargetBitmap
renderTargetBitmap = new RenderTargetBitmap((int)pageVisualRect.Width, (int)pageVisualRect.Height, 96.0, 96.0, PixelFormats.Pbgra32);
src\Framework\System\Windows\Documents\RubberbandSelector.cs (1)
301
RenderTargetBitmap
data = new RenderTargetBitmap((int)(scale * _selectionRect.Width), (int)(scale * _selectionRect.Height),dpi,dpi, PixelFormats.Pbgra32);
src\Framework\System\Windows\Documents\WpfPayload.cs (1)
443
RenderTargetBitmap
rtb = new RenderTargetBitmap((int)(di.Width * dpi.DpiScaleX), (int)(di.Height * dpi.DpiScaleY),
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
611
case 519: t = () => typeof(
RenderTargetBitmap
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8341
typeof(System.Windows.Media.Imaging.
RenderTargetBitmap
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6063
case KnownElements.RenderTargetBitmap: t = typeof(System.Windows.Media.Imaging.
RenderTargetBitmap
); break;
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemWrapper.cs (1)
263
var
renderTargetBitmap = new RenderTargetBitmap(pixelWidth, pixelHeight, dpiX, dpiY, PixelFormats.Pbgra32);
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
1180
RenderTargetBitmap
renderBitmap = new RenderTargetBitmap(imageWidth, imageHeight, DPI, DPI, PixelFormats.Pbgra32);