随笔分类 -  Silverlight

looping(and modifying) a collection
摘要:Ok, back to basics with this one.I have a collection of strings:1List<string> someStrings = new List<string>() { "aaaaaaa", "bbb", "ccc", "dddddddd" };And I want to remove the shorter item... 阅读全文
posted @ 2010-09-06 12:48 xqiwei 阅读(187) 评论(0) 推荐(0)
LineBreak in a tooltip in xaml
摘要:Here’s a quick tip how to show linebreaks in a tooltip in xaml.I wanted to show properties on multiple lines (in a multibinding):01' 02<LABEL Content="{Binding Name}"> 03<LABEL.TOOLTIP&... 阅读全文
posted @ 2010-09-06 12:45 xqiwei 阅读(143) 评论(0) 推荐(0)