.directive('expander', function() { /* expander() restrict: E,A,C,M(元素,属性,样式,注释) transclude:true替换 compile(编译)和link(连接) */ var scope ={title : '=expan... ...
分类:
其他好文 时间:
2017-08-11 13:38:23
阅读次数:
160
<table id="parentTable"> <thead> <tr> <th></th> <th>Values</th> <th>Number</th> <th>Other</th> </tr> </thead> <tbody> <tr> <td><span class='expander'> ...
分类:
Web程序 时间:
2017-06-30 17:12:28
阅读次数:
583
2-8 指令 内容简介 解析最简单的指令hello:匹配模式restrict 解析最简单的指令hello:template、templateUrl、$templateCache 解析最简单的指令hello:replace与translude comile与link(操作元素、添加css样式、绑定事件 ...
分类:
其他好文 时间:
2017-03-06 21:07:13
阅读次数:
279
菜单收缩有很多种方法具体如何实现还是看个人想法: 第一种通过后台控制收起与展开: 效果图: 代码 : <Grid> <Grid.ColumnDefinitions> <ColumnDefinition x:Name="cd" Width="154"/> <ColumnDefinition /> </ ...
分类:
Windows程序 时间:
2016-12-21 16:01:19
阅读次数:
4137
<Grid> <Grid.RowDefinitions> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> </Grid.RowDefinitions> <Expander Header="可以折叠" Name="expa ...
分类:
其他好文 时间:
2016-08-31 22:33:46
阅读次数:
281
1、 <Expander IsExpanded="True" Grid.Row="1" Cursor="Hand" Template="{DynamicResource ExpanderControlTemplate1}"></Expander> 2、 <ControlTemplate x:Key= ...
分类:
Windows程序 时间:
2016-08-27 00:16:08
阅读次数:
1691
简要说明: 当Expander 的IsExpanded属性为“True” 时给控件设个尺寸(此处为高度),当为“False”时给控件设另外一个值。 知识点:数据绑定、Style和Trigger <Grid> <Grid.RowDefinitions> <RowDefinition> <RowDefi ...
分类:
其他好文 时间:
2016-06-27 23:07:00
阅读次数:
184
1,Expander 2、Decoration(修饰控件) 常用的修饰控件有Border, Viewbox, and BulletDecorator等 border viewBox BulletDecorator 运行结果如下 ...