mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-05 07:56:11 +02:00
* Reset branch for WPF changes * Convert BMP to PNG; fix link-out-of-scope err * Add snippets for WPF... 6794 files!!!! * Add missing snippets * update file updated between migration * Fix paths to include * update breadcrumb and toc * fix index links * fix index links * fix index links * fix markdown
32 lines
1.6 KiB
Markdown
32 lines
1.6 KiB
Markdown
---
|
|
title: "How to: Override the Panel OnRender Method"
|
|
ms.date: "03/30/2017"
|
|
dev_langs:
|
|
- "csharp"
|
|
- "vb"
|
|
f1_keywords:
|
|
- "overriding OnRender method"
|
|
- "Panel control, overriding OnRender method"
|
|
- "OnRender method"
|
|
- "controls, Panel, overriding OnRender method"
|
|
helpviewer_keywords:
|
|
- "overriding OnRender method of Panel control [WPF]"
|
|
- "OnRender method [WPF], overriding"
|
|
- "Panel control [WPF], overriding OnRender method"
|
|
ms.assetid: 57397834-a085-4e36-90ab-416fad98f341
|
|
---
|
|
# How to: Override the Panel OnRender Method
|
|
This example shows how to override the <xref:System.Windows.Controls.Panel.OnRender%2A> method of <xref:System.Windows.Controls.Panel> in order to add custom graphical effects to a layout element.
|
|
|
|
## Example
|
|
Use the <xref:System.Windows.Controls.Panel.OnRender%2A> method in order to add graphical effects to a rendered panel element. For example, you can use this method to add custom border or background effects. A <xref:System.Windows.Media.DrawingContext> object is passed as an argument, which provides methods for drawing shapes, text, images, or videos. As a result, this method is useful for customization of a panel object.
|
|
|
|
[!code-csharp[LightWeightCustomPanel#1](~/samples/snippets/csharp/VS_Snippets_Wpf/LightWeightCustomPanel/CSharp/OffsetPanel.cs#1)]
|
|
[!code-vb[LightWeightCustomPanel#1](~/samples/snippets/visualbasic/VS_Snippets_Wpf/LightWeightCustomPanel/visualbasic/offsetpanel.vb#1)]
|
|
|
|
## See also
|
|
|
|
- <xref:System.Windows.Controls.Panel>
|
|
- [Panels Overview](panels-overview.md)
|
|
- [How-to Topics](panel-how-to-topics.md)
|