2012-12-22 94 views

回答

1

這應該指向你在正確的方向:

<Grid> 
    <Grid.RowDefinitions> 
     <RowDefinition Height="24"/> 
     <RowDefinition Height="*"/> 
    </Grid.RowDefinitions> 

    <Grid.ColumnDefinitions> 
     <ColumnDefinition Width="*" /> 
     <ColumnDefinition Width="24" /> 
     <ColumnDefinition Width="*" /> 
    </Grid.ColumnDefinitions> 
    <Polygon 
     Fill="LightGray" 
     Grid.Column="1"> 
     <Polygon.Points> 
      <Point X="12" Y="0" /> 
      <Point X="0" Y="24" /> 
      <Point X="24" Y="24" /> 
     </Polygon.Points> 
    </Polygon> 
    <ListBox Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="3" /> 
</Grid> 

當然,你可以自定義您認爲合適的... 請注意,在這個例子中,我設置的頂的高度和寬度中間的單元格,使箭頭24X24

+0

感謝您的這一點,現在我只需要找出彈出組合。 – roi972