2007年1月25日
摘要: Excel Web Services(以后简称EWS)位于整个Excel Services的前端(可以参考我之前的文章)。它提供了开发Excel的接口。从名字可以看出,EWS也属于WebService的一种,所以我们可以像使用普通的WebService那样使用它。要想调用EWS,先要知道它的地址,这取决于MOSS的设置。假如MOSS的名称为ServerName,那么对应的EWS地址就是: http... 阅读全文
posted @ 2007-01-25 09:48 stswordman 阅读(5756) 评论(8) 推荐(1) 编辑
  2007年1月19日
摘要: 之前的文章介绍过,我们可以通过Excel Services将Excel发布到SharePoint Server上,让用户在线地浏览Excel工作薄,如果有需要的话,还可以进一步地进行设置,允许用户与Excel工作薄交互。也可以编写应用程序与其交互。 要想使用Excel Services,您首先要启动MOSS中的Excel Calculation Services服务,并且保证存放Excel文档的目... 阅读全文
posted @ 2007-01-19 10:07 stswordman 阅读(10206) 评论(22) 推荐(1) 编辑
  2007年1月18日
摘要: Excel Services是MOSS2007中一种新的服务器端技术。它构建于ASP.NET和Microsoft Windows SharePoint Services 3.0技术之上。 看了名字就能知道,Excel Services不是单独的一个东西(复数形式嘛:),实际上它是由3个组件构成的: 1. Excel Web Access 2. E... 阅读全文
posted @ 2007-01-18 17:52 stswordman 阅读(8648) 评论(7) 推荐(1) 编辑
  2007年1月8日
摘要: CollectionViewSource 分组 排序 阅读全文
posted @ 2007-01-08 18:32 stswordman 阅读(1752) 评论(0) 推荐(0) 编辑
  2006年12月28日
摘要: 模式对话框,Binding,BindExpression,BindingOperations UpdateSourceTrigger 阅读全文
posted @ 2006-12-28 08:35 stswordman 阅读(3519) 评论(3) 推荐(0) 编辑
  2006年12月21日
摘要: 大多数的绑定操作都设置了Source和Path属性。Source属性用于确定绑定的对象,而Path属性确定对象中的属性。 很多人遇到{Binding}时都会很困惑. {Binding} 乍看起来好像缺少可用信息。实际上不是这样的,现在我对此解释一下 如果你阅读过我的上一篇文章,你应该知道:在控件树的上层里可以设置DataContext属性,所以并不一定要设置Source属性。 现... 阅读全文
posted @ 2006-12-21 08:25 stswordman 阅读(6202) 评论(0) 推荐(1) 编辑
  2006年11月5日
摘要: SlidingListBox – Animating ListBoxItems in WPF Brief Anatomy of a ListBox Dragging Elements in a Canvas FishEyePanel/FanPanel - Examples of custom layout panels in WPF 阅读全文
posted @ 2006-11-05 22:22 stswordman 阅读(512) 评论(0) 推荐(0) 编辑
  2006年10月31日
摘要: Memory Leak problem when using bitmap image as tooltip? setting BitmapImage.UriSource from binding doesn't work(使用c#调用图片资源)TabItems displayed vertically (TabItem纵向显示,使用LayoutTransform而不是RenderTransfor... 阅读全文
posted @ 2006-10-31 14:50 stswordman 阅读(323) 评论(0) 推荐(0) 编辑
  2006年10月17日
摘要: polyline可以绘制不规则线段,在使用中我发现了一个问题. 大家请看代码: 我在Canvas中使用Polyline画了两条黑色线段, 第一个Polyline对象有两个点.起始点为(20,45),终点为(100,4... 阅读全文
posted @ 2006-10-17 11:06 stswordman 阅读(3560) 评论(3) 推荐(0) 编辑
摘要: Canvas,DockPanel,Grid,StackPanel,WrapPanel是WPF中的5个布局控件.每个布局控件都有不同的应用场景.如果您要对元素进行精确的定位,那么就需要使用Canvas了. 可以把Canvas比作一个坐标系,所有的元素通过设置坐标来决定其在坐标系中的位置.这个坐标系的原点并不是在中央,而是位于它的左上角.见下图 元素设置坐标的方法共有四个: l ... 阅读全文
posted @ 2006-10-17 09:42 stswordman 阅读(10038) 评论(3) 推荐(0) 编辑