I know how to create a line path, arc path, and then draw the path with a designated pen, but this seems extremely cumbersome and overly complicated. Is there an easier way to do this?
Would it be possible to create a custom button control with a checked property? Any idea how I would change the color while keeping the pseudo-gradient look of the stock buttons?
How does VS handle the radiobutton attribute where only one radiobutton in an area is checked at a time? I know I can use if/then statements to check all other controls in the area for their checked state and change it to false, but again, that seems overly complicated. Is there a way to loop through all other controls, check for type, if type is togglebutton, togglebutton1.checked = false, then continue checking the rest of the controls?
Can I add a checked state to a custom button control (normal, hover, mouse down, *checked*)? And how do I change attributes of those states?