Moon
Moon

Reputation: 20002

Winforms Animated background

i want the background of my winform to be animated like a animated gif in the background or a video file being played as a background or a flash movie... how to do it

Upvotes: 2

Views: 9828

Answers (3)

Moon
Moon

Reputation: 20002

move to WPF........

Upvotes: -4

Pieter888
Pieter888

Reputation: 4992

for a .gif use a PictureBox

for a video use WMP (windows media player .net component)

for a flash you could use the Shockwave Flash Object to display the content

EDIT: the WMP might not be in your toolbox by default, select it by right-clicking in the toolbox and click "Select items..." this also counts for the Shockwave Flash Object

Upvotes: 5

PassionateDeveloper
PassionateDeveloper

Reputation: 15138

Simply get a control that do this what you want (e.g. ImageBox) and set the Dock-Property to fill to complete Page. Than all other controls that you put in your form will be on this ImageBox.

Upvotes: 6

Related Questions