* Updated H2 headings for US-1889327. * Review edits. * Apply suggestions from code review Co-authored-by: Andy (Steve) De George <[email protected]>
1.8 KiB
title, description, ms.date, ms.custom, dev_langs, helpviewer_keywords, ms.assetid
| title | description | ms.date | ms.custom | dev_langs | helpviewer_keywords | ms.assetid | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| How to: Load an Image as a Thumbnail | Learn how to Load an Image as a Thumbnail. | 03/30/2017 | devdivchpfy22 |
|
|
02e055a0-54df-499a-b8b6-ab6ff7535cff |
How to: Load an Image as a Thumbnail
The following examples show how to load an xref:System.Windows.Controls.Image as a thumbnail to conserve application memory.
Set the DecodePixelWidth property in XAML
The following example sets the xref:System.Windows.Media.Imaging.BitmapImage.DecodePixelWidth%2A property of a xref:System.Windows.Media.Imaging.BitmapImage in [!INCLUDETLA#tla_xaml] to reduce the memory required to load the image.
[!code-xamlImageElementExample_snip#ImageSimpleExampleInlineMarkup]
Set the DecodePixelWidth property in code
The following example sets the xref:System.Windows.Media.Imaging.BitmapImage.DecodePixelWidth%2A property of a xref:System.Windows.Media.Imaging.BitmapImage in code to reduce the memory required to load the image.
[!code-csharpImageElementExample_snip#ImageSimpleExampleInlineCode1] [!code-vbImageElementExample_snip#ImageSimpleExampleInlineCode1]