惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Securelist
AI
AI
S
Schneier on Security
T
The Exploit Database - CXSecurity.com
C
CERT Recently Published Vulnerability Notes
C
Cybersecurity and Infrastructure Security Agency CISA
T
Threat Research - Cisco Blogs
T
Tenable Blog
G
GRAHAM CLULEY
腾讯CDC
L
Lohrmann on Cybersecurity
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
The Cloudflare Blog
P
Proofpoint News Feed
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
AWS News Blog
AWS News Blog
D
Docker
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Latest news
Latest news
L
LINUX DO - 热门话题
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
L
LangChain Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
W
WeLiveSecurity
Blog — PlanetScale
Blog — PlanetScale
云风的 BLOG
云风的 BLOG
P
Privacy International News Feed
Cloudbric
Cloudbric
Attack and Defense Labs
Attack and Defense Labs
量子位
爱范儿
爱范儿
F
Fortinet All Blogs
博客园 - 三生石上(FineUI控件)
V
Vulnerabilities – Threatpost
Schneier on Security
Schneier on Security
J
Java Code Geeks
S
Security @ Cisco Blogs
N
News and Events Feed by Topic
N
Netflix TechBlog - Medium
博客园 - 司徒正美
I
InfoQ
WordPress大学
WordPress大学
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News

博客园 - aimin

SharePoint Foundation中文档与文件、单据类型定制办法 SharePoint2010的牛刀:一、新的服务应用程序架构 Silverlight甘特图:五、Gantt图控件[已开源发布Codeplex] Silverlight甘特图:四、树形DataGrid开发原理 Silverlight甘特图:三、甘特图面板开发原理 Silverlight甘特图:二、时间线开发原理 SharePoint Silverlight Workspacer 1.0 Silverlight Gantt Chart 改进计划 为业务建模——MOSS的优势与劣势 招SharePoint人才必须看ASP.NET底子 杂谈项目中的那些事儿:计划与变化 杂谈项目中的那些事儿:人的力量 杂谈项目中的那些事儿:理想与现状 【转】7 Signs Your SharePoint Project Is in Trouble 【转】7 Keys to Microsoft SharePoint Success silverlight Gantt Chart Demo 谈谈代码设计 Show一下Silverlight写的GanttChart SharePoint特性一览
Silverlight甘特图:一、甘特图介绍及开发者之系统准备
aimin · 2012-01-19 · via 博客园 - aimin

源码还在整理中,最迟在年后1月底2月初发布,项目名称初定为BestGantt,地址:http://bestgantt.codeplex.com/

该部分包括如下主题:

1) 甘特图控件是什么

2) 客户系统需求

3) 开发系统需求

1.1 什么是甘特图控件

甘特图是计划管理进度分析常用的工具之一。典型的甘特图由两个维度组成:纵向表示任务,横向时间轴表示任务进度。

本文档所表述的甘特图控件不仅可以展示出典型的甘特图样式,也可以通过二次开发显示为资源任务分配图,关键路径图。

1) 资源任务分配:纵轴表示资源列,横向时间轴表示每个资源所拥有的一个或多个分配任务。

2) 关键路径图:在典型甘特图上,将处于关键路径的任务用特定的颜色显示。

Note: 目前版本的甘特图不支持网络图,即以有向线段表示任务的前置关系。但预留了接口,可以通过二次开发实现,目前部分PDM项目已实现,通过对这些项目代码的重构,后续版本会默认支持网络图,从而减少二次开发的工作量。

taskview

resourceview

1.2 客户系统配置

IE 6以上版本 或 Firefox 2.0 以上版本

Silverlight 3, 4

1.3 开发者系统配置

控件最初使用Silverlight 3开发,因此代码支持 Silverlight 3运行时,如有需要请自行编译

开发系统软件配置需求如下

IE 6 Firefox 2.0……… 以上版本

Silverlight 3, 4 for developer

Visual Studio 2008, 2010

Microsoft Expression 3, 4

下一节将介绍甘特图控件及其三个主要的子控件的用法和开发原理,通过组合使用这些控件,可以开发出高效实用的甘特图应用程序。

三个子控件分别是:TimeLine, Gantt Panel, Tree Grid。

TimeLine: 时间轴,可以定义不同的缩放层级,包括年/季度,年/月,季度/月,月/日,周/日,日/时,时/分等。

Gantt Panel: 甘特图( 横道图 )显示区域,根据任务的起止时间显示柱状图形。

Tree Grid: 扩展自Silverlight DataGrid,继承了DataGrid大部分特性,并增加了显示层级化数据的能力。

guid1