重画系列:DataGridColumnStyle之测试代码

新建一测试程序(windows应用程序)需要添加以上类库的引用,然后添加一form1和datagrid1,声明

Public newstyle As TheFiveColumn.TheFiveColumn.FiveColumn_Style2

在窗体的Sub New 中添加

newstyle = New TheFiveColumn.TheFiveColumn.FiveColumn_Style2

 newstyle.MappingName = "Content"
        newstyle.HeaderText = "内容概要"
        newstyle.ReadOnly = True
        newstyle.Width = 344

'设置Style的图片显示属性

            Me.newstyle.SetPath_State_true = Application.StartupPath & "/images/open.gif"
            Me.newstyle.SetPath_State_false = Application.StartupPath & "/images/copen.gif"
            Me.newstyle.SetPath_State_unknow = Application.StartupPath & "/images/unknow.gif"
            Dim Path_Favorite_false As String = Application.StartupPath & "/images/FolderUnSel.gif"
            Me.newstyle.SetPath_Favorite_false = Path_Favorite_false
            Dim Path_Favorite_true As String = Application.StartupPath & "/images/FolderSel.gif"
            Me.newstyle.SetPath_Favorite_true = Path_Favorite_true
            Me.newstyle.SetPath_Analize_false = Application.StartupPath & "/images/detail.gif"
            Me.newstyle.SetPath_Analize_true = Application.StartupPath & "/images/detail.gif"

'声明tableStyle

        Dim tablestyle As New DataGridTableStyle
        tablestyle.MappingName = "LittleTable"
        tablestyle.RowHeadersVisible = False

'加入TableStyle

 tablestyle.GridColumnStyles.Add(newstyle)

'加入DataGridTableStyle

DataGrid1.TableStyles.Add(tablestyle)

'然后在form_load事件中帮定数据源:

dim mytable as new DataTable    

   mytable.Columns.Add("Content")

'添加数据

dim i as integer

for i=0 to 9   '10条数据

   dim row() as object=new String(){"关键字" & "$@" &  "网址" & "$@" & "正文"  & _

       "$@" & "1" & "$@" & "服务器" & "$@" & "修改时间" & "$@" & "内容摘要" & _

        "$@" & "1"}  '"$@"是分隔符,在列样式的paint方法中用来把某行数据分割

mytable.rows.add(row)

next

datagrid1.datasource=mytable

谢谢阅读,希望有什么意见能和我联系,ganenping@mainone.com.cn qq: 44460100

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值