Udostępnij za pośrednictwem


DataGrid.PreferredRowHeight Właściwość

Definicja

Pobiera lub ustawia preferowaną wysokość wiersza dla kontrolki DataGrid .

public:
 property int PreferredRowHeight { int get(); void set(int value); };
public int PreferredRowHeight { get; set; }
member this.PreferredRowHeight : int with get, set
Public Property PreferredRowHeight As Integer

Wartość właściwości

Int32

Wysokość wiersza.

Przykłady

Poniższy przykład kodu najpierw ustawia nową czcionkę i ustawia PreferredRowHeight tę samą wysokość co nowa czcionka.

private:
   void ChangeFontHeight( DataGrid^ myGrid )
   {
      myGrid->Font = gcnew System::Drawing::Font(
         "Microsoft Sans Serif",
         15, System::Drawing::FontStyle::Regular );
      myGrid->PreferredRowHeight = myGrid->Font->Height;
   }
private void ChangeFontHeight(DataGrid myGrid)
{
   myGrid.Font = new System.Drawing.Font
      ("Microsoft Sans Serif",
      15, System.Drawing.FontStyle.Regular);
   myGrid.PreferredRowHeight = myGrid.Font.Height;
}
Private Sub ChangeFontHeight(ByVal myGrid As DataGrid)
   ' Change the font first.
   myGrid.Font = New System.Drawing.Font _
   ("Microsoft Sans Serif", 15, _
   System.Drawing.FontStyle.Regular)

   myGrid.PreferredRowHeight = myGrid.Font.Height
End Sub

Uwagi

Ustaw tę właściwość przed zresetowaniem DataSource właściwości i DataMember (oddzielnie lub za pomocą SetDataBinding metody), albo właściwość nie będzie miała wpływu.

Dotyczy

Zobacz też