Click or drag to resize
SpriteController Constructor (PictureBox)
Create a sprite controller, specifying the picturebox on which the sprites will be displayed. You want to have the PictureBox already defined, and a background image already set for the PictureBox.

Namespace:  SpriteLibrary
Assembly:  SpriteLibrary (in SpriteLibrary.dll) Version: 1.0.0.5 (1.0.0.5)
Syntax
C#
public SpriteController(
	PictureBox Area
)

Parameters

Area
Type: System.Windows.FormsPictureBox
The PictureBox. that the sprites will be drawn in
Examples
This is an example of a Form class that defines a SpriteController. The MainDrawingArea is a PictureBox.
C#
public partial class ShootingFieldForm : Form
{
    public ShootingFieldForm()
    {
        InitializeComponent();
        MainDrawingArea.BackgroundImage = Properties.Resources.Background;
        MainDrawingArea.BackgroundImageLayout = ImageLayout.Stretch;
        MySpriteController = new SpriteController(MainDrawingArea);
    }
}
See Also