随笔分类 - Silverlight
摘要:智能表单设计器Web Free Form Designer:FreeForm 简介*智能表单设计器Web Free Form Designer:FreeForm表单控件使用方法之:基础控件 *智能表单设计器Web Free Form Designer:FreeForm模板及数据存取方式智能表单设计器Web Free Form Designer:FreeForm动态数据验证和动态自动计算*智能表单设计器Web Free Form Designer:FreeForm常量定义及用途智能表单设计器Web Free Form Designer:FreeForm动作触发规则*智能表单设计器FreeForm
阅读全文
摘要:FreeForm自动计算及数据验证FreeForm自动计算创建2个控件用于演示自动计算:进入RuntimeDesign 添加自动计算字符型公式选择ToUpper然后将鼠标放在括号()的中间请按键盘Ctrl 键,将自动出现当前的控件列表,选择FieldA点击 Add ,并点击 OK在FieldA输入abcd,然后进入Runtime Design 测试自动计算点击“TestCalculation”可以看到效果:其他操作的方法也是类似。时间公式为FieldA添加公式ShortDateString:效果:选择 Now点击“TestCalculation”可以看到效果:数字公式还记得圆面积的计算公式吗?
阅读全文
摘要:Silverlight中动态数据验证和动态自动计算的Reflection反射实现上周在博客园发了个首页随笔,因为被误认为是广告而被移出首页,这次发首页,特地备足了技术材料,结合FreeForm实际的开发情况,从技术上分析在Silverlight中实现动态数据验证和自动计算的方法。我们知道在.Net ...
阅读全文
摘要:New Document FreeForm表单控件使用方法FreeForm控件一览 FreeForm表单引擎与InfoPath Service对比InfoPath是微软SharePoint下的极重要的表单服务,其客户端Ofiice InfoPath发布于2007年。FreeForm是昕友软件自主知识产权的XML Web表单引擎。现在我们来对比FreeForm和InfoPath的区别。 InfoPa...
阅读全文
摘要:如何编写Silverlight动画效果控件 作为开发人员我一直存在2个问题,相信很多人也有这样的问题: 1、懒惰,为了实现一些Silverlight特殊效果要写烦乱的XAML语句,这太可怕了; 2、因为不是设计人员,很难做出一些非常美观的界面 于是,我就写了EffectControls控件集,目的是用最短的时间和最短的代码实现很酷的控件效果。开放源码,欢迎您的使用和改进,如果有好玩的特效,请一定要通知我。 在线演示地址 http://crmwin.com/EffectControlsTestPage.html 源代码下载: Open Source Web Address: http://Ef.
阅读全文
摘要:EffectControls EffectControls是免费开源的Silverlight特效动画界面控件。EffectControls是在开发FreeForm表单设计器(FreeForm Silverlight Form Designer)时开发的效果控件,我作为开发人员一直存在2个问题:1、懒...
阅读全文
摘要:FreeForm 简介FreeForm 是 昕友软件 开发的免费表单设计器,是亿方智能平台的其中一个组件。是一个基于.Net + SilverLight + DataBase + WCF 设计的动态表单RIA SOA系统。包含Web表单设计器(包含运行时验证器、公式生成器)、工作流接口、运行时表单展现器,还有服务器端的表单引擎和工作流BPM引擎。无需编程经验,它可以快速设计自定义样式的表单,收集企业数据信息,结合FreeFlow,用于零编码构建企业级的数据信息、表单、工作流BPM业务系统。众所周知,数据、表单、工作流是企业业务系统的核心,而传统意义上的软件定制开发,费时费力,而且风险高,但通用
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Xml.Linq;using System.Reflection;using System.Xml;using
阅读全文
摘要:Author/Site Link Andy Beauliue http://www.andybeaulieu.com/Home/tabid/67/Default.aspx Brad Adams http://blogs.msdn.com/brada/default.aspx Chris Hay http://www.screencast.com/users/chrishayuk DotNet Cu...
阅读全文
摘要:Due to obvious security reasons Silverlight cannot directly load files from a client box. However, in response to an event like a button Silverlight can load files through the OpenFileDialog where the...
阅读全文
摘要:XML (Extensible Markup Language) is a great format for saving structured data in. In this Tip I will be showing you how to read and process XML files from Silverlight using the XmlReader object. Let&...
阅读全文
摘要:In this Tip I will be showing you how to place hard coded strings into a resource area. This is a common best practice for software development that makes it much easier to manage the strings in your ...
阅读全文
摘要:If you have a large game or application it might be wise to break it up into smaller components (DLL’s) that can be downloaded to the client from the server as needed. This way your customers ar...
阅读全文
摘要:Silverlight currently has full mouse support for single click. However, double click is a another story. In this tip I will show you how to implement double click. You can apply this technique for an ...
阅读全文
摘要:(Workflow Designer)顺序工作流Original Image 并发工作流Original Image 亿方智能平台Original Image 亿方智能平台Original Image
阅读全文
摘要:1、表单系统需求企业开发表单,要么是使用定制开发的表单,要么采用PHP/JSP/ Asp.net进行页面开发,各业务都要开发一个页面(手工来画表单)以进行数据采集,还要有大量的JavaScript配合,非常繁琐,或者使用表单工具进行开发,比如微软InfoPath,但表单逻辑稍复杂,InfoPath等表单工具就无法适用,昕友亿方的表单系统是基于以下需求产生的:通过Web浏览器访问,通过所见即所得、拖拽可得的个性化表单设计器进行表单设计,或者通过表单向导制作通用型、表格型、AJAX类型、或任意定制类型的表单,有复杂验证和计算公式,支持主从表业务逻辑、表单元素类型极其丰富、能适应业务变化而灵活变化的
阅读全文
摘要:有一篇技巧,见http://tech.sina.com.cn/s/2008-07-03/1528718607.shtml或http://kb.cnblogs.com/page/42897/?page=1讨论的是运用InitParams在Silverlight 2应用程序中切换用户控件,这是个很笨但是直观的解决方式。但如果在控件中传值,那将怎么办?以上方法将毫无用途!今天在一个老外的博客看到有个很巧...
阅读全文
摘要:http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-3-using-networking-to-retrieve-data-and-populate-a-datagrid.aspxhttp://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-5-using-th...
阅读全文
摘要:是某类型: if (this.FindName(ControlName).GetType() == typeof(LabelIMG)) { }具有某接口: if (this.FindName(ControlName).GetType().GetInterface("IControl",true) == typeof(IControl)) { }
阅读全文
摘要:using System;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.Ink;using System.Windows.Input;using System.Windows.Media;using Sys...
阅读全文