there are a number of little tweaks I would like to make to how a WinGrid looks, but I cannot figure out how to do them. Here is the screen shot of what I have so far:
Here is what I would like to change:
Band[0]
Band [1]
Your last question is a bit unclear. What exactly do you mean by "select"?
You can prevent the user from selecting a row in any band using something like this:
grid.DisplayLayout.Bands[0].Override.SelectTypeRow = None
But I don't think you are really talking about selection here, I think you probably mean something more, like you don't want the user to Activate the row, or maybe you don't want the row to be editable.
So what exactly do you want to happen when the user clicks on a row in Band 0?
Mike Saltzman"] Your last question is a bit unclear. What exactly do you mean by "select"?
Well, the control is a picker control. It is designed to allow the end user select something from Band[0], Band[1] is simply there to help them determine which Band[0] to pick.
Sam