user007
user007

Reputation: 1084

Windows explorer-like navigation buttons

Is there a way to add "navigation buttons" in c# windows forms application? How can I get this control?

navigation buttons

Upvotes: 1

Views: 519

Answers (1)

Ondrej Janacek
Ondrej Janacek

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.

enter image description here

Upvotes: 2

Related Questions