y_zyx
y_zyx

Reputation: 642

how to show bitmap over panel asp.net

How to show bitmap over panel in .Net?

Upvotes: 0

Views: 348

Answers (1)

Cody Gray
Cody Gray

Reputation: 245001

I can't really imagine that you even tried doing this yourself before asking the question...

If I add a Panel control to my Web Form, and then examine the properties of that control in the Properties Window, I see one that looks particularly interesting: the BackImageUrl property.

Visual Studio tells me that this allows me to set:

The background image of the panel.

By setting that property to the URL of a bitmap of my choice, I can show a bitmap over a panel in .NET.

Upvotes: 1

Related Questions