Valhalla Legends Archive

Programming => General Programming => .NET Platform => Topic started by: Imperceptus on May 11, 2009, 12:25 PM

Title: Richtext in a listviewitem
Post by: Imperceptus on May 11, 2009, 12:25 PM
I would like to put richtext in a listview item, any thoughts? google yielded nodda
Title: Re: Richtext in a listviewitem
Post by: Yegg on May 11, 2009, 04:54 PM
It should be possible with .NET. P
Title: Re: Richtext in a listviewitem
Post by: Warrior on May 11, 2009, 07:31 PM
Yes, it's pretty easy if you're using WPF. If you're using WinForms, then I don't know.
Title: Re: Richtext in a listviewitem
Post by: Imperceptus on May 11, 2009, 09:05 PM
Well if its possible I will figure it out eventually, thanks =)
Title: Re: Richtext in a listviewitem
Post by: Warrior on May 11, 2009, 10:07 PM
The XAML for a very simplistic WPF version would look like:


<ListView>
<ListViewItem>
<TextBlock>
<Span Foreground="Red">Hello</Span>
<Span Foreground="Blue" FontWeight="Medium">Hi</Span>
</TextBlock>
</ListViewItem>
</ListView>


Due to WPF's rich content model, create these sort of composite controls is really easy.
Title: Re: Richtext in a listviewitem
Post by: Imperceptus on May 12, 2009, 11:49 AM
Sure looks easier then some of the crap ive tried so far.  I am tinkering with using a table layout panel, it works great but i think im breaking the scroll feature lol
Title: Re: Richtext in a listviewitem
Post by: Warrior on May 12, 2009, 05:13 PM
Quote from: Imperceptus on May 12, 2009, 11:49 AM
Sure looks easier then some of the crap ive tried so far.  I am tinkering with using a table layout panel, it works great but i think im breaking the scroll feature lol

Table layout panel? Are you speaking about WPF or WinForms?
Title: Re: Richtext in a listviewitem
Post by: MyndFyre on May 12, 2009, 11:09 PM
This wouldn't be implicitly possible without a lot of voodoo.  You might be able to set the parent window of the rich text box to the list view, but the list view itself is a window, its items are not.

Remember that Winforms is a wrapper around the Win32 API.