Reputation: 1084
Is there a way to add "navigation buttons" in c# windows forms application? How can I get this control?
Upvotes: 1
Views: 519
Reputation: 12616
Just download images you like from the internet (search for "free arrows icons"), set them as a source of the PictureBox
component and set them Click()
action.
private void pictureBox1_Click(object sender, EventArgs e)
{
MessageBox.Show("Test");
}
You can load an image to a picturebox by clicking a small arrow on the component as shown on the image.
Upvotes: 2