Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
It sounds like you are trying to create a bitwise enum using the Flag attribute. This is a very good approach when you may want to store multiple values into a single integer field. Binding to a checkbox is going to have to be something done on your side and totally depends on your logic. By deafult, this logic will not work as a checkbox is a Boolean which is a Bit or only supports 0 and 1. Since your enum will already exceed this logic, you may be better suited going with a combo box or a checked list box. Something of that nature.
|