What I'm trying to do is, to flip image horizontally on radio button click.
private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
arrow.Image.RotateFlip(RotateFlipType.RotateNoneFlipX);
}
private void radioButton2_CheckedChanged(object sender, EventArgs e)
{
arrow.Image.RotateFlip(RotateFlipType.RotateNoneFlipX);
}
The code above doesn't flip image: image stays as it is. What am I missing?