Silverlight RadGridView的HeaderCellStyle样式

效果图

<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.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
    xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="500">

    <UserControl.Resources>

        <Style x:Key="TextBlockHeaderCellStyle" TargetType="telerik:GridViewHeaderCell">
            <Setter Property="Background" Value="#EAEFF0" />
            <Setter Property="BorderBrush" Value="#D8E5EC" />
            <Setter Property="BorderThickness" Value="1" />
            <Setter Property="VerticalContentAlignment" Value="Center" />
            <Setter Property="HorizontalContentAlignment" Value="Stretch" />
            <Setter Property="Padding" Value="5,0,3,0" />
            <Setter Property="Foreground" Value="Black" />
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="telerik:GridViewHeaderCell">
                        <Grid x:Name="PART_HeaderCellGrid">

                            <Border x:Name="GridViewHeaderCell" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}">
                                <Border BorderBrush="Transparent" Background="{TemplateBinding Background}" BorderThickness="0" />
                            </Border>

                            <ContentControl x:Name="ContentPresenter" Foreground="{TemplateBinding Foreground}"
                                            Margin="{TemplateBinding Padding}" IsTabStop="{TemplateBinding IsTabStop}"
                                            Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"
                                            VerticalAlignment="{TemplateBinding VerticalContentAlignment}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
                                            VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch"/>
                        </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>

    </UserControl.Resources>

    <Grid Background="White" Margin="10">
        <telerik:RadGridView x:Name="gridUser" FontWeight="Bold" Height="Auto" ShowGroupPanel="False" Background="#FFFFFF" BorderBrush="#FFFFFF"
                             CanUserReorderColumns="False" CanUserSortColumns="False" CanUserFreezeColumns="False" AutoGenerateColumns="False"
                             AreRowDetailsFrozen="False" SelectionMode="Single" RowIndicatorVisibility="Collapsed" IsReadOnly="True"
                             HorizontalAlignment="Stretch" VerticalAlignment="Top">
            <telerik:RadGridView.Columns>

                <telerik:GridViewDataColumn Header="用 户" DataMemberBinding="{Binding userName}" HeaderCellStyle="{StaticResource TextBlockHeaderCellStyle}" HeaderTextAlignment="Center" TextAlignment="Left" Width="1*" />

                <telerik:GridViewDataColumn Header="地 址" DataMemberBinding="{Binding userAdd}" HeaderCellStyle="{StaticResource TextBlockHeaderCellStyle}" HeaderTextAlignment="Center" TextAlignment="Left" Width="1*" />

            </telerik:RadGridView.Columns>
        </telerik:RadGridView>
    </Grid>
</UserControl>
时间: 2024-10-27 17:25:09

Silverlight RadGridView的HeaderCellStyle样式的相关文章

Silverlight C#动态设置样式

1.从页面资源中获取样式并应用 btnTest.Style = (Style)this.Resources["BigButtonStyle"] 2.从项目中单独分开的资源字典文件(或一个引用的程序集中)中获取样式. 首先,需要创建一个ResourceDictionary对象并提供正确的URI: ResourceDictionary dictionary = new ResourceDictionary(); dictionary.Source = new Uri("/Test

silverlight RadGridView 复合表头 多表头 导出excel

ListHeaderShow.Clear(); ListHeaderShow.Add("区县"); ListHeaderShow.Add("企业名称"); ListHeaderShow.Add("监测点名称"); ListHeaderShow.Add("监测时间"); Util.Export<T_DATA_DATACOMMON> Exportxls = new Util.Export<T_DATA_DATAC

silverlight RadGridView 复合表头 多表头

<telerik:RadGridView x:Name="GridView" Grid.Row="3" ShowGroupPanel="False" RowIndicatorVisibility="Collapsed" CanUserFreezeColumns="False" IsReadOnly="True" IsFilteringAllowed="False"

silverlight中的RadGridview控件的样式及部分属性设置

1.不显示第1列即列指示器(Row Indicators) 在 telerik:RadGridView中设置属性 RowIndicatorVisibility="Collapsed" 2.不显示最上面的分组面板(Group Panel) 在 telerik:RadGridView中 设置属性 ShowGroupPanel="False" 3.不显示最左侧的那条线(Frozen Columns Splitter) 在 telerik:RadGridView中 设置属性

Silverlight样式定义

方法一.定义在控件内部 1 <Canvas Background="Red" Height="100" HorizontalAlignment="Left" Margin="90,80,0,0" Name="canvas1" VerticalAlignment="Top" Width="200" /> 方法二.定义在控件外部 1 <UserContr

使用Telerik StyleMananger 改变Silverlight Button样式

Telerik 支持更改以下控件样式 System.Windows.Button System.Windows.ScrollViewer System.Windows.CheckBox System.Windows.TextBox System.Windows.RadioButton System.Windows.ListBox System.Windows.PasswordBox System.Windows.RepeatButton System.Windows.Tooltip 需要在App

Silverlight 样式的灵活使用

众所周知,Silverlight将界面设计与代码实现分开.即便如此,如果不能灵活地运用样式Style,开发的效率依然会比较低.比如,针对类似的TextBlock,你可能需要反复地在设计器xaml中复制粘贴很多行设计器代码.但如果开发人员掌握了样式的使用,可以一次设计,到处使用. (一)获取一个控件的样式Style文件 这里以FloatableWindow控件为例 (1)打开一个继承自FloatableWindow的控件OverlapControl的设计器文件OverlapControl.xaml

Silverlight控件样式——TabControl

写Silverlight程序已有一年有余,一步步走来满是收获却疏于积累与分享.在此空闲时间,将过去重写过的控件样式一一记录,便于查阅,也希望能起到抛砖引玉之效.如有编写和使用上的问题,均可发邮件到zdp06623#163.com(#替换为@)反馈与问询. 控件修改后效果 控件使用注意事项 该控件由系统自带控件TabControl重写而来,样式仿Chorme选项卡.使用过程中需要注意几点: 1.第一个选项卡样式与其他选项卡样式有所差异,需要分别引用FirstGreenTabItemStyle样式和

Silverlight TabItem选中,未选中样式设置

<Application.Resources> <LinearGradientBrush x:Key="TabItemBackground" EndPoint="0,1" StartPoint="0,0"> <GradientStop Color="#B5D8FB" Offset="0"/> <GradientStop Color="#6DB9F1&quo