不使用列和边框创建WPF表 [英] Create WPF table without using column and borderline

查看:81
本文介绍了不使用列和边框创建WPF表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以创建一个表而不在WPF中显示列和边框的名称?



如果是,我需要使用哪些代码?

Is it possible to create a table without displaying the name of the column and borderline in WPF?

If yes, what code do I need to use?

推荐答案

是的可能。



yes possible.

<Grid>
     <Grid.RowDefinitions>
        <RowDefinition/>
        <RowDefinition/>
     </Grid.RowDefinitions>
     <Label Grid.Row="0">row 0</Label>
     <Label Grid.Row="1">row 1</Label>
  </Grid>





见这里:网格类 [ ^ ]



并使用它来测试: http://www.kaxaml.com/ [ ^ ]


这篇关于不使用列和边框创建WPF表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆