随笔分类 -  WPF/Silverlight

WPF/Silverlight
摘要:https://www.codeproject.com/Articles/21062/Splash-Screen-Control https://www.codeproject.com/Articles/38291/Implement-Splash-Screen-with-WPF https://w 阅读全文
posted @ 2017-06-13 11:49 任国强 阅读(610) 评论(0) 推荐(0) 编辑
摘要:国内有Baidu FEX Team开发的Web Uploader. WebUploader是由Baidu WebFE(FEX)团队开发的一个简单的以HTML5为主,FLASH为辅的现代文件上传组件。在现代的浏览器里面能充分发挥HTML5的优势,同时又不摒弃主流IE浏览器,沿用原来的FLASH运行时, 阅读全文
posted @ 2016-07-14 16:27 任国强 阅读(382) 评论(0) 推荐(0) 编辑
摘要:http://labs.cas.de/silverlight/CASCRMSL3/http://www.msvevent.com/ 阅读全文
posted @ 2011-04-16 22:58 任国强 阅读(457) 评论(0) 推荐(0) 编辑
摘要:<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.or 阅读全文
posted @ 2011-04-11 19:02 任国强 阅读(2563) 评论(0) 推荐(1) 编辑
摘要:http://www.shinedraw.com/text-effect/flash-and-silverlight-3d-text-space/ 阅读全文
posted @ 2011-03-25 17:09 任国强 阅读(363) 评论(0) 推荐(0) 编辑
摘要:Silverlight 1.x Implemented eMagazine.First annuced:It' implmented by JavaScript,not .net。Silverlight is so at that time. Let'strytounderstits' thought.Thought is important than anythings I think.http://msdn.microsoft.com/en-us/magazine/cc507644.aspxDemo Show: http://silverlight.net/cont 阅读全文
posted @ 2011-03-20 23:19 任国强 阅读(559) 评论(3) 推荐(0) 编辑
摘要:http://waf.codeplex.com/wikipage?title=Architecture%20-%20Get%20The%20Big%20Picture 阅读全文
posted @ 2010-12-23 13:12 任国强 阅读(249) 评论(0) 推荐(0) 编辑
摘要:http://code.msdn.microsoft.com/wpfsamples 阅读全文
posted @ 2010-12-23 12:56 任国强 阅读(402) 评论(0) 推荐(0) 编辑
摘要:1.ListView,DataGrid要想能正常的显示垂直滚动条。  ListView,DataGrid在Document Outline中任何一级祖先节点都不可以是StackPanel。DockPanel某些情况下,可以实现你想要的完美的替代解决方案。2.ListView千万不能直接放ScrollViewer里。  此操作可引来巨大的UI变慢,甚至无响应的问题。3.ItemControl不能随便乱用的,有时会引来巨大的UI无响应问题。4.ListView在不同的主题下,如:Windows Classic && Windows 7 Aero下。ListView内嵌的控件是不同的。5.ListV 阅读全文
posted @ 2010-12-14 13:45 任国强 阅读(744) 评论(0) 推荐(0) 编辑
摘要:Bug 现象,点击Clear button后,操作一下UI,发现ListView的里仍然能保留第一行,太匪夷所思了。以下是测试程序的代码:<Window x:Class="WpfApplication37.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://... 阅读全文
posted @ 2010-11-17 17:23 任国强 阅读(628) 评论(3) 推荐(0) 编辑
摘要:http://www.hardcodet.net/2008/01/wpf-treeview 阅读全文
posted @ 2010-11-03 14:33 任国强 阅读(941) 评论(1) 推荐(0) 编辑
摘要:<!-- FocusVisual --><Style x:Key="ButtonFocusVisual"> <Setter Property="Control.Template"> <Setter.Value> <ControlTemplate> <Border> <Rectangle Margin="2" Stroke... 阅读全文
posted @ 2010-10-19 15:55 任国强 阅读(710) 评论(1) 推荐(1) 编辑
摘要:http://social.msdn.microsoft.com/Forums/en-SG/wpf/thread/5b614ec5-9366-44f2-ad35-5865fa86547e <Button> <Button.Template> <ControlTemplate TargetType="Button"> <Grid Height="24" Wi... 阅读全文
posted @ 2010-10-13 13:03 任国强 阅读(377) 评论(0) 推荐(1) 编辑
摘要:下面两种语法,只是变相的形式而已。    for (int i = 0; i < dgETL.Items.Count; i++) { CheckBox selectCheckBoxInCell = dgETL.Columns[0].GetCellContent(dgETL.Items[i]) as CheckBox; if (selectCheckBoxInCell != null) { s... 阅读全文
posted @ 2010-09-02 18:51 任国强 阅读(5486) 评论(3) 推荐(0) 编辑
摘要:今天又使用WPF 的DataGrid,发现了一个稍微隐蔽的问题。http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/5cc4f719-8b16-440b-ada9-657564f0097b/In my try. Datagrid's parent container and super-parent containers must be... 阅读全文
posted @ 2010-08-11 16:41 任国强 阅读(1481) 评论(1) 推荐(1) 编辑
摘要:以前,自己只做过一些silverlight的企业开发,但是没怎么动过WPF。但是昨天,同事告诉我WPF也能开发基于网站的程序,我一瞧,还真是这么回事。原来在Visual Studio 2008 的C#应用类型里有两个东西:WPF Browser ApplicationSiverlight Application我实验了一下WPF Browser Application的demo,发现他也可以发布到... 阅读全文
posted @ 2010-02-11 14:09 任国强 阅读(2154) 评论(4) 推荐(0) 编辑
摘要:问:Silverlight有啥要完善的啊 ?答:不知道。人家告诉我,就是不能拖拽。哈哈哈,往后,我还可以回答“不知道”了。 阅读全文
posted @ 2009-11-02 11:24 任国强 阅读(606) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示