上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 64 下一页
  2013年11月18日
摘要: ylbtech-SilverLight-DataControls-PagedCollectionView:The PagedCollectionView(分页的集合视图) 对象1.A, Building a Data Object(创建一个数据对象)1.B, Sorting(排序)1.C, Filtering(过滤)1.D, Grouping(分组)1.E, Paging(分页)1.A, Building a Data Object(创建一个数据对象)返回顶部/Access/Product.csusing System;using System.Collections.Generic;usin 阅读全文
posted @ 2013-11-18 09:30 ylbtech 阅读(971) 评论(0) 推荐(0) 编辑
  2013年11月17日
摘要: ylbtech-SilverLight-DataBinding: Bingding to a Collection Objects(绑定一个集合对象)1.A, Building a Data Object(创建一个数据对象)1.B, Calling a Data Service(调用一个数据服务)【测试数据】1.C, Binding to a Collection of Objects(绑定一个对象集合)1.D, Binding to a Collection of Objects 2(绑定一个对象集合 2)1.A, Building a Data Object(创建一个数据对象)返回顶部/A 阅读全文
posted @ 2013-11-17 09:00 ylbtech 阅读(694) 评论(0) 推荐(0) 编辑
  2013年11月16日
摘要: ylbtech-SilverLight-DataBinding: Binding to Data Objects(绑定到数据对象)1.A, Building a Data Object(创建一个数据对象)1.B, Displaying a Data Object with Datacontext(显示一个数据对象与DataContext)1.C, Storing a Data Object as a Resource(存储一个数据对象作为一个资源)1.D, Editing with Two-Way Bindings(编辑与双向绑定)[未实现]1.A, Building a Data Objec 阅读全文
posted @ 2013-11-16 22:10 ylbtech 阅读(684) 评论(0) 推荐(0) 编辑
  2013年11月12日
摘要: ylbtech-SilverLight-Layout: 布局(3)StackPanel 对象A, Nesting Layout Containers(内嵌布局容器)B, StackPanel(队列面板)对象C, StackPanel(队列面板)对象 Orientation="Horizontal"D, StackPanel(队列面板)对象之 AlignmentE, StackPanel(队列面板)对象之 Margins1.A, Nesting Layout Containers(内嵌布局容器)返回顶部1,2, ... 阅读全文
posted @ 2013-11-12 01:13 ylbtech 阅读(2187) 评论(0) 推荐(0) 编辑
  2013年11月10日
摘要: ylbtech-SilverLight-Layout: 布局(2)GridSplitter(网格分割)垂直分割、水平分割A, Splitter(分割)对象之 GridSplitter(网格分割)1:垂直分割B,Splitter(分割)对象之 GridSplitter(网格分割)2:水平分割C,Splitter(分割)对象之 GridSplitter(网格分割)3:Grid嵌套水平分割D, Splitter(分割)对象之 GridSplitter(网格分割)3:Grid嵌套水平分割+垂直分割1.A, Splitter(分割)对象之 GridSplitter(网格分割)1:垂直分割返回顶部1,2, 阅读全文
posted @ 2013-11-10 23:54 ylbtech 阅读(2472) 评论(0) 推荐(0) 编辑
摘要: ylbtech-SilverLight-Layout:布局(1) Border(边框)对象、Grid(网格)对象A, Border(边框)对象B, Grid(网格)对象C, Grid(网格)对象之合并行、和并列1.A, Border(边框)对象返回顶部1,2, 3,Margin,Background, BorderBrush[边框颜色], BorderThickness[边框宽度], CornerRadius[圆角半径]4,1.B, Grid(网格)对象返回顶部1,2, ... 阅读全文
posted @ 2013-11-10 22:37 ylbtech 阅读(2948) 评论(0) 推荐(0) 编辑
  2013年11月1日
摘要: ylbtech-SilverLight-Basic-Control:基础控件使用(6)-Slider控件Slider 控件Slider 控件的 ValueChanged 事件1.A,返回顶部Slider控件(滑动器控件)1,2,Name, Height, Width,Maxmum, Minmum, Value,Orientation[布局方向]=[水平方向|垂直方向], IsDirectionReversed[增长方向]=[True[自右向左增加|自上而下增加]]3,//赋值this.slider1.Value = 10;this.slider1.Orientation = Orientati 阅读全文
posted @ 2013-11-01 16:04 ylbtech 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: ylbtech-SilverLight-Basic-Control:基础控件使用(5)-TreeView控件-基本使用前台编辑后台逐个添加后台绑定数据源1.A,返回顶部TreeView控件(树形视图控件)-前台编辑1, 2,Name, Height, Width,Header, IsExpanded[是否展开], IsSelected[是否选中状态]3,//取值string str1aHeader = ((TreeViewItem)treeView1.SelectedItem)... 阅读全文
posted @ 2013-11-01 11:16 ylbtech 阅读(1558) 评论(0) 推荐(0) 编辑
  2013年10月31日
摘要: ylbtech-SilverLight-Basic-Control:基础控件使用(4)-日期显示和选择类控件Calendar,DatePicker1.A,返回顶部Calendar控件(日期控件)1,2,Name,DisplayDate[显示日期],SelectedDate[默认日期],DisplayMode[显示模式]3,DateTime date = new DateTime(2008, 8, 8);calendar1.DisplayDate = date; //显示日期calendar1.SelectedDate = date;//默认日期calendar1.DisplayMode =.. 阅读全文
posted @ 2013-10-31 14:49 ylbtech 阅读(1428) 评论(0) 推荐(0) 编辑
摘要: ylbtech-SilverLight-Basic-Control:基础控件使用(3)-DataGrid控件DataGrid控件-后台绑定自动生成表列不自动生成表列1.A,返回顶部Person类(数据源提供者)1,/// /// 人员类/// public class Person{ /// /// 编号 /// public int Id { get; set; } /// /// 姓名 /// public string Name { get; set; } /// /// 年龄 /// publi... 阅读全文
posted @ 2013-10-31 11:16 ylbtech 阅读(1316) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 64 下一页