What's the best way to add margin between columns or rows in a WPF or Silverlight grid?
- Add fixed width/height columns/rows to the grid
- Add margin to the grid child controls
- Anything else?
Thanks in advance
|
What's the best way to add margin between columns or rows in a WPF or Silverlight grid?
Thanks in advance |
|||
|
|
|
It depends, really, on your design, and is a matter of your own tastes. The biggest thing is to be consistent. I think it's perfectly acceptable to put a fixed width "spacer" column or row in most cases - then you don't have to worry about maintenance later (either by you or somebody else). The thing to watch out for is setting things twice (i.e. both a margin and fixed width column). It's not too big a problem if you are using all the same kind of control, but it could get a little ugly if you use different kinds of controls that have Styles applied to them that include Margins and/or Padding. |
|||
|
|
|
If you don't mind deriving your own control from the Grid and using that instead, you can do it quite easily. Since it seems like a good idea I quickly whipped up this (mostly untested and quite ugly!) code:
|
|||||||
|