I want some of the items to be bold depending on a property of an object i'm putting into the listbox.
I think you can do it with changing templates but can't seem to find an example.
Thanks!
|
|
|
|
|
|
|
You can do it more simply than that if you use a converter (IntToFontWeightConverter, for example). Set up an item template:
where Name is what you want to display, and Position is your property that you are basing the bold / normal on. Create your converter (depending on the type of the property that you base the bold on).
|
||
|
|
|
|
You can do this using DataTriggers. For a simple example of using a DataTrigger you can check out http://manicprogrammer.com/cs/blogs/willeke/archive/2007/04/25/datatriggers-are-very-cool.aspx Here's an example using a ListView, but the same thing applys to a Listbox.
Then the ItemTemplate is in my Window's Resources:
And finally the Style with the DataTriggers is also in my Window's Resources.
My example is probably a lot more verbose than it needs to be, but I just pulled it straight from one of my apps. |
||
|
|
|
|
Thank you very much. It helped greatly!! |
||
|
|