Link to home
Start Free TrialLog in
Avatar of sharpodal
sharpodal

asked on

Circular button with event handling

I need a circular button on my form as attached. It has four arrows as in the bitmap. This need to done with C# Winform application. Plus i need to handle the left right up and down arrow events

How do i do this kind of implementation as I am used with using only rectangular buttons
Circular-button.JPG
Avatar of RedKelvin
RedKelvin

Hi,
Cut the button up into four images, and display them using imageButton controls.

From there it will be pretty much the same as any other buttons.

RedK
Avatar of sharpodal

ASKER

I want this to be done for Windows Form application but the ImageButton is a web control. Any idea how to do for Windows form application
ASKER CERTIFIED SOLUTION
Avatar of Jaime Olivares
Jaime Olivares
Flag of Peru image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks