摘要: 今天开始学习用StimulSoft制作Silverlight报表.http://www.stimulsoft.com/ 阅读全文
posted @ 2012-03-22 19:49 左手边的爱 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 总是困扰于代码的执行顺序,貌似不是难以理解的事情,为什么我总困惑与此? 阅读全文
posted @ 2012-03-21 13:45 左手边的爱 阅读(158) 评论(0) 推荐(0) 编辑
摘要: http://hi.baidu.com/wx587/blog/item/b333830a5e263130b0351ddb.html.// C 货币2. 2.5.ToString("C"); // ¥2.503. // D 10进制数4. 25.ToString("D5"); // 250005. // E 科学型6. 25000.ToString("E"); // 2.500000E+0057. // F 固定点8. 25.ToString("F2"); // 25.009. // G 常规10. 2.5.ToSt 阅读全文
posted @ 2012-03-20 15:50 左手边的爱 阅读(150) 评论(0) 推荐(0) 编辑
摘要: < telerik:RadComboBox x: Name = "radComboBox"> < telerik:RadComboBox. ItemsPanel > < ItemsPanelTemplate > < VirtualizingStackPanel /> </ ItemsPanelTemplate > </ telerik :RadComboBox. ItemsPanel ></ telerik : RadComboBox > 阅读全文
posted @ 2012-03-15 10:32 左手边的爱 阅读(315) 评论(0) 推荐(0) 编辑
摘要: [转载]伟大的程序员是怎样炼成的?http://www.cnblogs.com/hack/archive/2010/05/23/1742080.html 近几周,一份反映 Netflix 公司企业文化的报告在网上广为流传。这份报告里列举了很多Netflix公司里令人称赞的做法,包括这个公司是如何的招聘和辞退员工的。里面有大量的信息是描述Netflix公司是怎样对待员工的,这使Netflix公司变成了一个很有吸引力的工作场所。报告里面提到过有一个关于员工所期望的内容的清单,但没有把清单列出来。报告的开始部分就谈及了企业价值问题,而且是按照员工的立场角度写的,可惜并没有把这个问题展开。 我并不.. 阅读全文
posted @ 2012-03-08 21:42 左手边的爱 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Silverlight 3中的Behavior技术(二) Behavior技术可以把常用的行为封装成可重复使用的组件(component),这个组件从技术面来说,当然只是没有外观的一组类别(Class),而开发人员或设计师可以在Blend 3当中将这个类别的对象实体(instance)『套用(Hook)』到某一个控件上,使得套用了该Behavior的控件可以不须撰写任何程序代码,就可以立即拥有(达成)一些和使用者互动的行为。原来有这么多东西要学习。my gril。 阅读全文
posted @ 2012-02-29 23:17 左手边的爱 阅读(148) 评论(0) 推荐(0) 编辑
摘要: textbox can't receive focus right after change the ISBusy property. That's because of animation of Busyindication is still running,and it is impossible for the internal control to receive focus.Telerik team offer theway to resolvethis issue. The IsBusyIndicationVisible property is updated la 阅读全文
posted @ 2012-02-29 22:30 左手边的爱 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Enum: Binding to the Description Attribute这篇文章写得是C#环境下,带有description属性的enum如何binding到combobox。并且用到了扩展类,使用很方便。但是silverlight中没有GetValues这个方法,所以不能用。在silverlight中可以用下面的方法myCombobox.AddComboboxItem(((Customer.CustomerTypeOption)i).GetDescription(), ((Customer.CustomerTypeOption)i).ToString());public stat 阅读全文
posted @ 2012-02-29 13:13 左手边的爱 阅读(545) 评论(0) 推荐(0) 编辑
摘要: [Silverlight入门系列]使用MVVM模式(6):使用BehaviorSilverlight 3中的Behavior技术(一) 阅读全文
posted @ 2012-02-29 13:05 左手边的爱 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 想实现textbox自动提示功能,本来想用autocomplete来做(参考http://www.nikhilk.net/Silverlight-AutoComplete.aspx),后来发现telerik的combobox也可以实现,而且只需定义两个基本属性。但是telerik的combobox用起来很不舒服。 阅读全文
posted @ 2012-02-27 22:35 左手边的爱 阅读(264) 评论(0) 推荐(0) 编辑