DataGrid.PreferredRowHeight Proprietà

Definizione

Ottiene o imposta l'altezza preferita delle righe per il controllo 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

Valore della proprietà

Altezza di una riga.

Esempio

Nell'esempio di codice seguente viene prima impostato un nuovo tipo di carattere e viene impostato lo PreferredRowHeight stesso valore del nuovo tipo di carattere.

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

Commenti

Impostare questa proprietà prima di reimpostare le DataSource proprietà e DataMember (separatamente o tramite il SetDataBinding metodo) oppure la proprietà non avrà alcun effetto.

Si applica a

Vedi anche