效果图 <UserControl x:Class="SilverlightApplication7.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.co…
原文:WPF,SilverLight中直线的样式示例 XAML代码:// LineStyle.xaml<Viewbox Width="600" Height="500"  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> …
之前一直做WPF现在开始接触Slilverlight感触很多. 今天做一个Button要求 有两个图片,button默认有一个图片,鼠标over时用另一个图片, 用wpf做的时候写一个template很简单,但silverlight和wpf写起来不一样 记录一下.大概思路是两个image鼠标MouseOver的时候一个Visible一个Collapsed 写的是一个自定义控件,代码和皮肤分离,很简单的一个demo 代码下载:ImageButtonTest.rar 先写一个继承自button的im…
系列二    实现RadGridView行中添加不同控件,并在控件中绑定不同的数据源    先上一段前台代码 <telerik:RadGridView Grid.Row="2" x:Name="activitiesGrid1"                               AutoGenerateColumns="False" GridLinesVisibility="None" Visibility=&q…
1.从页面资源中获取样式并应用 btnTest.Style = (Style)this.Resources["BigButtonStyle"] 2.从项目中单独分开的资源字典文件(或一个引用的程序集中)中获取样式. 首先,需要创建一个ResourceDictionary对象并提供正确的URI: ResourceDictionary dictionary = new ResourceDictionary(); dictionary.Source = new Uri("/Test…
1:在app.xaml中加入需实现的样式,如: <Application.Resources> <Style x:Key="NodeStyle" TargetType="VectorModel:Node"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="VectorModel:Node…
在RadGridView中进行分组以及导出 分组 主要是在前台进行分组的定义: 前台代码: <telerik:RadGridView x:Name="RadGridView1" ItemsSource="{Binding Customers}" CanUserFreezeColumns="False" AutoExpandGroups="True" AutoGenerateColumns="False"…
系列一. RadGridView常用属性总结    1.不可编辑----IsReadOnly="True".    2.不自动增加行----AutoGenerateColumns="False".    3.不显示行和列的线----GridLinesVisibility="None".    4.不显示第1列即列指示器----RowIndicatorVisibility="Collapsed".    5.不显示最上面的分组面…
概述 大家是否觉的现在Silverlight 2提供的默认的控件不能满足自己的要求?好在Silverlight的控件可以运用皮肤,微软Silverlight控件的设计者的主管Corrina开发了几套非常精彩的Silverlight 2控件皮肤,现在已经提供下载,大家可以很方便的添加到自己的项目中,让你的Silverlight程序更炫更酷. Bubbly 在线演示   下载 Red 在线演示  下载 Flat 在线演示  下载 原文:Great new Silverlight Control Sk…
public void BindFaultGridInfo(IList<HealthStatusApp.Web.Models.FaultMajorModel> list) { rg_Fault.Columns.Clear(); var DefferList = list.GroupBy(m => m.BurdenMajor).ToList(); IList<HealthStatusApp.Web.Models.FaultMajorModel> itemFaultlist =…