共用方式為


Table.CellSpacing 屬性

定義

取得或設定資料表中儲存格之間的間距大小。

public:
 property double CellSpacing { double get(); void set(double value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))]
public double CellSpacing { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))>]
member this.CellSpacing : double with get, set
Public Property CellSpacing As Double

屬性值

資料表中儲存格之間的間距大小 (以與裝置無關的像素為單位)。

預設值為 2.0

屬性

範例

下列範例會定義具有 0.35 公分的簡單 2 x 3 資料表 CellSpacing

<Table Background="Yellow" CellSpacing="0.35cm">
  <Table.Columns>
    <TableColumn /> <TableColumn /> <TableColumn />
  </Table.Columns>
  <TableRowGroup>
    <TableRow>
      <TableCell Background="Cyan">
        <Paragraph>Cell at Row 1 Column 1</Paragraph>
      </TableCell>
      <TableCell Background="Cyan">
        <Paragraph>Cell at Row 1 Column 2</Paragraph>
        <Paragraph>Cell at Row 1 Column 2</Paragraph>
      </TableCell>
      <TableCell Background="Cyan">
        <Paragraph>Cell at Row 1 Column 3</Paragraph>
      </TableCell>
    </TableRow>
    <TableRow>
      <TableCell Background="Cyan">
        <Paragraph>Cell at Row 2 Column 1</Paragraph>
      </TableCell>
      <TableCell Background="Cyan">
        <Paragraph>Cell at Row 2 Column 2</Paragraph>
      </TableCell>
      <TableCell Background="Cyan">
        <Paragraph>Cell at Row 2 Column 3</Paragraph>
      </TableCell>
    </TableRow>
  </TableRowGroup>
</Table>

下圖顯示此範例的轉譯方式。

螢幕擷取畫面:表格儲存格間距螢幕擷取畫面

相反地,下圖顯示相同的資料表如何轉譯預設儲存格間距為 2 圖元。

螢幕擷取畫面:表格儲存格間距螢幕擷取畫面

備註

XAML Attribute Usage

<object property="double"/>  
- or -  
<object property="qualifiedDouble"/>  

XAML 值

double
Double

值的字串表示 Double 等於或大於 0.0 ,但小於 PositiveInfinity 。 不合格的值是以裝置獨立圖元來測量。 字串不需要明確包含小數點。

qualifiedDouble
如上所述的 雙精度 浮點數,後面接著下列其中一個單位規範: px 、、 incmpt 、 。

px (預設) 是裝置獨立單位 (,每單位 1/96 英吋)

in 為英吋;1in==96px

cm 為公分;1cm== (96/2.54) px

pt 為點;1pt== (96/72) px

相依性屬性資訊

識別碼欄位 CellSpacingProperty
設定為 的中繼資料屬性 true AffectsMeasure

適用於