2011-08-11 49 views
0

中紅色部分的圖片顯示了我想要做的就是在DataGrid中顯示工具提示,當用戶把你的鼠標在每個小區的每個單元格顯示一個消息,該提示是在每個如何在DataGrid

diferent

enter image description here

回答

2
<DataGrid ItemsSource="{Binding Data}"> 
    <DataGrid.CellStyle> 
     <Style TargetType="{x:Type DataGridCell}"> 
      <Setter Property="ToolTip"> 
       <Setter.Value> 
        <TextBlock> 
         <Run Text="{Binding Name, StringFormat='{}{0}: '}" /> 
         <Run Text="{Binding TypeName}" FontWeight="Bold"/> 
        </TextBlock> 
       </Setter.Value> 
      </Setter> 
     </Style> 
    </DataGrid.CellStyle> 
</DataGrid> 

假設一個Name財產和財產TypeName您綁定對象。