演练:使用属性自定义 DataGrid 控件

Silverlight
 
此主题尚未评级 - 评价此主题
 

Silverlight DataGrid 控件支持常用表格式设置选项,例如交替显示不同的行背景以及能够显示或隐藏表头、网格线和滚动条。 可以通过设置 DataGrid 属性来进行这些自定义。 属性可以在设计时在 XAML 中设置,也可以在运行时在过程代码中设置。

本演练演示以下任务:

  • 创建数据对象的集合。

  • 创建用户界面以显示数据。

  • 设置列表的数据源。

  • 创建用于设置 DataGrid 选项的用户界面。

  • 添加过程代码以修改 DataGrid 属性。

若要查看 DataGrid 控件的运行示例,请单击下面的链接。

运行此示例

您需要以下组件来完成本演练:

  • Silverlight 5 Beta.

  • 用于 Visual Studio 2010 的 Silverlight Tools.

  • Visual Studio 2010.

可以从 Silverlight 下载站点 下载所有 Silverlight 软件。

第一步是创建一个 Silverlight 项目。

创建 Silverlight 项目

  • 使用 Visual Basic 或 Visual C# 新建一个名为 DGBasicCustomization 的 Silverlight 应用程序项目。 保持选中默认选项“在新网站中承载 Silverlight 应用程序”。 有关更多信息,请参见 如何创建新 Silverlight 项目

接下来创建要在 DataGrid 中显示的 Task 对象的集合。

创建 Task 对象的集合

  1. 向 DGBasicCustomization 项目中添加一个名为 Task 的类。

  2. 向 Task 类中添加下面的代码。

    此代码包含 Task 类,该类表示要在 DataGrid 控件中显示的数据对象。

     
    public string Name { get; set; }
    public DateTime DueDate { get; set; }
    public bool Complete { get; set; }
    public string Notes { get; set; }
  3. 打开 MainPage.xaml.vb 或 MainPage.xaml.cs。

  4. 在 MainPage 类构造函数的 InitializeComponent 方法的后面添加以下代码。

    此代码创建一个名为 taskList 的泛型 List<T>,并使用循环以 Task 对象填充集合。 然后将 taskList 设置为 DataGrid的 ItemsSource

     
    // Create a list to store task data.
    List<Task> taskList = new List<Task>();
    int itemsCount = 10;
    // Generate some task data and add it to the task list.
    for (int i = 1; i <= itemsCount; i++)
    {
    taskList.Add(new Task()
    {
    Name = "Task " + i.ToString(),
    DueDate = DateTime.Now.AddDays(i),
    Complete = (i % 3 == 0),
    Notes = "Task " + i.ToString() + " is due on "
    + DateTime.Now.AddDays(i) + ". Lorum ipsum..."
    });
    }
    this.dataGrid1.ItemsSource = taskList;

接下来,通过向页面中添加 DataGrid 控件来创建任务列表的用户界面。

创建任务列表的用户界面

  1. 在 DGBasicCustomization 项目中,添加一个对 System.Windows.Controls.Data 程序集的引用。 有关更多信息,请参见 如何:向页中添加 DataGrid 控件

  2. 打开 MainPage.xaml。

  3. 在 <UserControl> 开始标记中添加下面的 XAML。

    此 XAML 将 sdk 前缀映射到 Silverlight SDK 命名空间,如 Silverlight 库的前缀和映射中所述。

    xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"

  4. 在 <UserControl> 开始标记中,将 Width 属性的值更改为 600,将 Height 属性的值更改为 700。

  5. 在 <UserControl> 开始标记之后添加下面的 XAML,从而替换现有的 <Grid> 标记。

    此 XAML 添加一个 StackPanel 以及一个名为 dataGrid1 的 DataGrid,前者用于布局目的,后者用于显示任务列表。

     
    <StackPanel x:Name="LayoutRoot" Background="White" Margin="5">
    
    ...
    
        <sdk:DataGrid x:Name="dataGrid1" Height="350" Width="540"
    HorizontalAlignment="Left" >
    </sdk:DataGrid>
    </StackPanel>
  6. 生成并运行此应用程序。

    当应用程序运行时,您将看到一个 DataGrid,它以其默认外观和行为显示 taskList 集合中的任务。

接下来创建 DataGrid 选项的用户界面。

创建 DataGrid 选项的用户界面

  1. 打开 MainPage.xaml。

  2. 在 <StackPanel> 开始标记之后添加下面的 XAML。

    此 XAML 用于添加选择控件,您将使用这些控件在运行时修改 DataGrid 的属性。

     
    <StackPanel Margin="0,0,0,5">
    <StackPanel Orientation="Horizontal">
    <Border BorderBrush="Black" BorderThickness="1" Padding="3" Width="180">
    <StackPanel>
    <TextBlock Text="DataGrid Options" FontSize="12" />
    <CheckBox Content="Grid is read-only"
    Checked="cbReadOnly_Changed" Unchecked="cbReadOnly_Changed" />
    <CheckBox Content="Freeze first column"
    Checked="cbFreezeColumn_Changed" Unchecked="cbFreezeColumn_Changed"/>
    <CheckBox Content="Hide first column"
    Checked="cbHideColumn_Changed" Unchecked="cbHideColumn_Changed"/>
    <CheckBox Content="Single Row Selection"
    Checked="cbSelectionMode_Changed" Unchecked="cbSelectionMode_Changed" />
    <TextBlock Text="Column Options" FontSize="12" />
    <CheckBox Content="Allow Column Reordering" IsChecked="true"
    Checked="cbColReorder_Changed" Unchecked="cbColReorder_Changed"/>
    <CheckBox Content="Allow Column Resizing" IsChecked="true"
    Checked="cbColResize_Changed" Unchecked="cbColResize_Changed"/>
    <CheckBox Content="Allow Column Sorting" IsChecked="true"
    Checked="cbColSort_Changed" Unchecked="cbColSort_Changed"/>
    <TextBlock Text="Scroll Bar Options" FontSize="12" />
    <CheckBox Content="Vertical Scroll Bars" IsThreeState="True" IsChecked=""
    Checked="cbVerticalScroll_Changed" Unchecked="cbVerticalScroll_Changed"
    Indeterminate="cbVerticalScroll_Changed" />
    <CheckBox Content="Horizontal Scroll Bars" IsThreeState="True" IsChecked=""
    Checked="cbHorizontalScroll_Changed" Unchecked="cbHorizontalScroll_Changed"
    Indeterminate="cbHorizontalScroll_Changed"/>
    </StackPanel>
    </Border>
    <Border BorderBrush="Black" BorderThickness="1" Padding="3" Width="180">
    <StackPanel>
    <TextBlock Text="Alternating Row Background" FontSize="12" />
    <ComboBox SelectionChanged="cbAltRowBrush_SelectionChanged">
    <ComboBoxItem Content="Default" IsSelected="True" />
    <ComboBoxItem Content="Custom" />
    <ComboBoxItem Content="Null" />
    </ComboBox>
    <TextBlock Text="Row Background" FontSize="12" />
    <ComboBox SelectionChanged="cbRowBrush_SelectionChanged">
    <ComboBoxItem Content="Default" IsSelected="True" />
    <ComboBoxItem Content="Custom" />
    <ComboBoxItem Content="Null" />
    </ComboBox>
    <TextBlock Text="Header Visibility" FontSize="12" />
    <ComboBox SelectionChanged="cbHeaders_SelectionChanged">
    <ComboBoxItem Content="All"/>
    <ComboBoxItem Content="Column (Default)" IsSelected="True"/>
    <ComboBoxItem Content="Row"/>
    <ComboBoxItem Content="None"/>
    </ComboBox>
    <TextBlock Text="Grid Lines Visibility" FontSize="12" />
    <ComboBox SelectionChanged="cbGridLines_SelectionChanged">
    <ComboBoxItem Content="All"/>
    <ComboBoxItem Content="Vertical (Default)" IsSelected="True"/>
    <ComboBoxItem Content="Horizontal"/>
    <ComboBoxItem Content="None"/>
    </ComboBox>
    <TextBlock Text="Custom Grid Lines" FontSize="12" />
    <CheckBox Content="Vertical"
    Checked="cbCustomGridLineVert_Changed"
    Unchecked="cbCustomGridLineVert_Changed"/>
    <CheckBox Content="Horizontal"
    Checked="cbCustomGridLineHorz_Changed"
    Unchecked="cbCustomGridLineHorz_Changed"/>
    </StackPanel>
    </Border>
    </StackPanel>
    </StackPanel>

接下来,您将添加代码以处理对用户界面控件所做的更改以及设置 DataGrid 属性。

在代码中设置 DataGrid 属性

  1. 打开 MainPage.xaml.vb 或 MainPage.xaml.cs。

  2. 在 MainPage 类构造函数之后,添加下面的代码。

    此代码将处理您在上一节中添加的 DataGrid 选项用户界面控件的更改事件。 当某个选项更改时,将设置相应的DataGrid 属性

     
    // READ ONLY
    private void cbReadOnly_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    this.dataGrid1.IsReadOnly = (bool)cb.IsChecked;
    }
    // FREEZE COLUMN
    private void cbFreezeColumn_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    {
    if (cb.IsChecked == true)
    this.dataGrid1.FrozenColumnCount = 1;
    else if (cb.IsChecked == false)
    this.dataGrid1.FrozenColumnCount = 0;
    }
    }
    // HIDE COLUMN
    private void cbHideColumn_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    {
    if (cb.IsChecked == true)
    this.dataGrid1.Columns[0].Visibility = Visibility.Collapsed;
    else if (cb.IsChecked == false)
    this.dataGrid1.Columns[0].Visibility = Visibility.Visible;
    }
    }
    // SELECTION MODE
    private void cbSelectionMode_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    {
    if (cb.IsChecked == true)
    this.dataGrid1.SelectionMode = DataGridSelectionMode.Single;
    else if (cb.IsChecked == false)
    this.dataGrid1.SelectionMode = DataGridSelectionMode.Extended;
    }
    }
    // COLUMN OPTIONS
    private void cbColReorder_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    this.dataGrid1.CanUserReorderColumns = (bool)cb.IsChecked;
    }
    private void cbColResize_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    this.dataGrid1.CanUserResizeColumns = (bool)cb.IsChecked;
    }
    private void cbColSort_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    this.dataGrid1.CanUserSortColumns = (bool)cb.IsChecked;
    }
    // SCROLL BARS VISIBILITY
    private void cbVerticalScroll_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    {
    if (cb.IsChecked == true)
    this.dataGrid1.VerticalScrollBarVisibility = ScrollBarVisibility.Visible;
    else if (cb.IsChecked == false)
    this.dataGrid1.VerticalScrollBarVisibility = ScrollBarVisibility.Hidden;
    else
    this.dataGrid1.VerticalScrollBarVisibility = ScrollBarVisibility.Auto;
    }
    }
    private void cbHorizontalScroll_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    {
    if (cb.IsChecked == true)
    this.dataGrid1.HorizontalScrollBarVisibility = ScrollBarVisibility.Visible;
    else if (cb.IsChecked == false)
    this.dataGrid1.HorizontalScrollBarVisibility = ScrollBarVisibility.Hidden;
    else
    this.dataGrid1.HorizontalScrollBarVisibility = ScrollBarVisibility.Auto;
    } }
    // ROW BRUSH
    private void cbAltRowBrush_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
    ComboBoxItem cbi = ((ComboBox)sender).SelectedItem as ComboBoxItem; if (this.dataGrid1 != null)
    {
    if (cbi.Content.ToString() == "Custom")
    this.dataGrid1.AlternatingRowBackground = new SolidColorBrush(Color.FromArgb(255, 130, 175, 200));
    else if (cbi.Content.ToString() == "Default")
    this.dataGrid1.AlternatingRowBackground = new SolidColorBrush(Color.FromArgb(37, 233, 238, 244));
    else if (cbi.Content.ToString() == "Null")
    this.dataGrid1.AlternatingRowBackground = null;
    }
    }
    private void cbRowBrush_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
    ComboBoxItem cbi = ((ComboBox)sender).SelectedItem as ComboBoxItem;
    if (this.dataGrid1 != null)
    {
    if (cbi.Content.ToString() == "Custom")
    this.dataGrid1.RowBackground = new SolidColorBrush(Color.FromArgb(255, 135, 185, 195));
    else if (cbi.Content.ToString() == "Default")
    this.dataGrid1.RowBackground = new SolidColorBrush(Color.FromArgb(00, 255, 255, 255));
    else if (cbi.Content.ToString() == "Null")
    this.dataGrid1.RowBackground = null;
    }
    }
    // HEADERS VISIBILITY
    private void cbHeaders_SelectionChanged(object sender, RoutedEventArgs e)
    {
    ComboBoxItem cbi = ((ComboBox)sender).SelectedItem as ComboBoxItem;
    if (this.dataGrid1 != null)
    {
    if (cbi.Content.ToString() == "All")
    this.dataGrid1.HeadersVisibility = DataGridHeadersVisibility.All;
    else if (cbi.Content.ToString() == "Column (Default)")
    this.dataGrid1.HeadersVisibility = DataGridHeadersVisibility.Column;
    else if (cbi.Content.ToString() == "Row")
    this.dataGrid1.HeadersVisibility = DataGridHeadersVisibility.Row;
    else
    this.dataGrid1.HeadersVisibility = DataGridHeadersVisibility.None;
    } }
    // GRIDLINES VISIBILITY
    private void cbGridLines_SelectionChanged(object sender, RoutedEventArgs e)
    {
    ComboBoxItem cbi = ((ComboBox)sender).SelectedItem as ComboBoxItem;
    if (this.dataGrid1 != null)
    {
    if (cbi.Content.ToString() == "All")
    this.dataGrid1.GridLinesVisibility = DataGridGridLinesVisibility.All;
    else if (cbi.Content.ToString() == "Vertical (Default)")
    this.dataGrid1.GridLinesVisibility = DataGridGridLinesVisibility.Vertical;
    else if (cbi.Content.ToString() == "Horizontal")
    this.dataGrid1.GridLinesVisibility = DataGridGridLinesVisibility.Horizontal;
    else
    this.dataGrid1.GridLinesVisibility = DataGridGridLinesVisibility.None;
    } }
    // CUSTOM GRIDLINES
    private void cbCustomGridLineVert_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    {
    if (cb.IsChecked == true)
    this.dataGrid1.VerticalGridLinesBrush = new SolidColorBrush(Colors.Blue);
    else
    this.dataGrid1.VerticalGridLinesBrush = new SolidColorBrush(Color.FromArgb(255, 223, 227, 230));
    }
    }
    private void cbCustomGridLineHorz_Changed(object sender, RoutedEventArgs e)
    {
    CheckBox cb = sender as CheckBox;
    if (this.dataGrid1 != null)
    {
    if (cb.IsChecked == true)
    this.dataGrid1.HorizontalGridLinesBrush = new SolidColorBrush(Colors.Blue);
    else
    this.dataGrid1.HorizontalGridLinesBrush = new SolidColorBrush(Color.FromArgb(255, 223, 227, 230));
    }
    }
  3. 生成并运行此应用程序。

    当应用程序运行时,您将看到一个 DataGrid,其中显示 taskList 集合中的任务。 此外,您还将看到用于动态修改DataGrid 控件的外观和行为的选项。

  4. 当应用程序运行时,更改各个选项并查看对 DataGrid 控件的外观和行为产生的影响。

如果您无需在运行时动态设置 DataGrid 属性,则通常在 XAML 中设置这些属性。 若要查看 XAML 语法来设置属性,请参见DataGrid 属性文档的"XAML 属性用法"部分。

也可以通过向控件应用样式和模板来自定义 DataGrid。 利用样式和模板,可以对控件实现比设置属性更多的自定义。 若要了解有关如何向控件应用样式和模板的更多信息,请参见控件自定义和 DataGrid 样式和模板

演练:使用属性自定义 DataGrid 控件的更多相关文章

  1. WPF 自定义DataGrid控件样式

    内容转自https://www.cnblogs.com/xiaogangqq123/archive/2012/05/07/2487166.html 一.DataGrid基本样式(一) 小刚已经把Dat ...

  2. jQuery之自定义datagrid控件

    sldatagrid 效果: sldatagrid.js (function($) { function loadColumns(sldatagrid, columns) { $(sldatagrid ...

  3. WPF 4 DataGrid 控件(自定义样式篇)

    原文:WPF 4 DataGrid 控件(自定义样式篇)      在<WPF 4 DataGrid 控件(基本功能篇)>中我们已经学习了DataGrid 的基本功能及使用方法.本篇将继续 ...

  4. EasyUI 中 DataGrid 控件 列 如何绑定对象中的属性

    EasyUI 中 DataGrid 控件 是我们经常用到的控件之一, 但是 DataGrid 控件 在绑定显示列时却不支持对象属性绑定. 模型如下: public class Manager impl ...

  5. wpf研究之道——datagrid控件分页

    这是我们的datagrid分页效果图,有上一页,下一页,可以跳到任何一页.当页码比较多的时候,只显示几页,其余用点点,界面实现如下: <!--分页--> <StackPanel Or ...

  6. WPF 4 DataGrid 控件(进阶篇一)

    原文:WPF 4 DataGrid 控件(进阶篇一)      上一篇<WPF 4 DataGrid 控件(自定义样式篇)>中,我们掌握了DataGrid 列表头.行表头.行.单元格相关的 ...

  7. WPF 4 DataGrid 控件(进阶篇二)

    原文:WPF 4 DataGrid 控件(进阶篇二)      上一篇<WPF 4 DataGrid 控件(进阶篇一)>中我们通过DataGridTemplateColumn 类自定义编辑 ...

  8. WPF 4 DataGrid 控件(基本功能篇)

    原文:WPF 4 DataGrid 控件(基本功能篇)      提到DataGrid 不管是网页还是应用程序开发都会频繁使用.通过它我们可以灵活的在行与列间显示各种数据.本篇将详细介绍WPF 4 中 ...

  9. 安卓自定义组合控件--toolbar

    最近在学习安卓APP的开发,用到了toolbar这个控件, 最开始使用时include layout这种方法,不过感觉封装性不好,就又改成了自定义组合控件的方式. 使用的工具为android stud ...

随机推荐

  1. 调用hcm接口同步员工数据更新员工信息没有同步到bdm

    原来是更新的时候,baseEmployeeEntity的id为空,这时候需要把原先的baseEmployeeEntity1的id赋值给baseEmployeeEntity,问题解决

  2. python023 Python3 标准库概览

    Python3 标准库概览 操作系统接口 os模块提供了不少与操作系统相关联的函数. >>> import os >>> os.getcwd() # 返回当前的工作 ...

  3. NYOJ-673悟空的难题~~水题~~

    悟空的难题 时间限制:1000 ms  |  内存限制:65535 KB 难度:2 描述 自从悟空当上了齐天大圣,花果山上的猴子猴孙们便也可以尝到天上的各种仙果神酒,所以猴子猴孙们的体质也得到了很好的 ...

  4. 352. Data Stream as Disjoint Interval

    Given a data stream input of non-negative integers a1, a2, ..., an, ..., summarize the numbers seen ...

  5. (二)Commonjs规范与模块化

    在之前的学习中我们使用require()来引入我们需要的包,这其实就是模块化,各模块相互独立,可以通过某种方式引入别的模块.而这些引入方式都是遵循一定的规范的,这就是CommonJS规范. 一.Com ...

  6. T1365 浴火银河星际跳跃 codevs

    http://codevs.cn/problem/1365/  时间限制: 1 s  空间限制: 128000 KB  题目等级 : 黄金 Gold 题目描述 Description 小 K 又在玩浴 ...

  7. Java描述符(修饰符)的类型

    以下内容引用自http://wiki.jikexueyuan.com/project/java/modifier-types.html: 描述符(修饰符)是添加到那些定义中来改变他们的意思的关键词.J ...

  8. 聊聊高并发(四十)解析java.util.concurrent各个组件(十六) ThreadPoolExecutor源代码分析

    ThreadPoolExecutor是Executor运行框架最重要的一个实现类.提供了线程池管理和任务管理是两个最主要的能力.这篇通过分析ThreadPoolExecutor的源代码来看看怎样设计和 ...

  9. Visual Studio VS2010 如何修改默认的编辑语言

    1 比如我要把默认是C++的配置改成C#,在工具-导入和导出设置中,重置所有设置 2 这里改成新的语言 3 重置完成

  10. poj 1426 Find The Multiple ( BFS+同余模定理)

    Find The Multiple Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 18390   Accepted: 744 ...