0

我刚刚切换到使用表格格式。如果我想用 colspan 和 rowspan 在 Table 标签中做 colspan 和 rowspan,我们如何在标签中做同样的事情。请帮帮我。


属性Sorting根据项目文本对项目进行排序。如果要基于 对 ListView 中的项目进行排序Tag,则应使用 Sort 方法。Sort 方法使用属性中IComparer指定的ListViewItemSorter对 ListView 中的项目执行手动排序。

下面是一个分拣机的例子:

public class ListViewItemComparer : IComparer
{
    public int Compare(object x, object y)
    {
        YourType a = (YourType)((ListViewItem)x).Tag;
        YourType b = (YourType)((ListViewItem)y).Tag;
        // compare tags
        return a.CompareTo(b);
    }
}

用法:

listView.ListViewItemSorter = new ListViewItemComparer();

如果要更改排序方向,请将结果乘以-1或使用b.Compare(a).

4

1 回答 1

0

您应该必须学习/理解一些CSS 属性- floatdisplaywidthclear

例如,

<style type="text/css">
 #leftPane{ 
  float:left;
  width:20%;
 }
 #rightPane{
  float:right;
  width:77%;
 }

<div id="leftPane"></div>
<div id="rightPane"></div>
<div style="clear:both"></div>
....
于 2012-07-18T09:42:22.273 回答