DataGridTableStyle.SelectionForeColor Proprietà

Definizione

Ottiene o imposta il colore di primo piano delle celle selezionate.

public:
 property System::Drawing::Color SelectionForeColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color SelectionForeColor { get; set; }
member this.SelectionForeColor : System.Drawing.Color with get, set
Public Property SelectionForeColor As Color

Valore della proprietà

Color

Oggetto Color che rappresenta il colore primo piano delle celle selezionate.

Esempio

Nell'esempio di codice seguente viene illustrato l'uso di questo membro.

// Creates a common color dialog box.
ColorDialog^ myColorDialog = gcnew ColorDialog;
myColorDialog->AllowFullOpen = false;

// Allow the user to get help.
myColorDialog->ShowHelp = true;

// Set the initial color select to the current color.
myColorDialog->Color = customersStyle->SelectionForeColor;

// Show color dialog box.
myColorDialog->ShowDialog();

// Set selection fore color to selected color.
customersStyle->SelectionForeColor = myColorDialog->Color;
// Creates a common color dialog box.
ColorDialog myColorDialog = new ColorDialog();
myColorDialog.AllowFullOpen = false ;
// Allow the user to get help. 
myColorDialog.ShowHelp = true ;
// Set the initial color select to the current color.
myColorDialog.Color = customersStyle.SelectionForeColor; 
// Show color dialog box.
myColorDialog.ShowDialog();
// Set selection fore color to selected color.
customersStyle.SelectionForeColor = myColorDialog.Color;
' Creates a common color dialog box.
Dim myColorDialog As New ColorDialog()
myColorDialog.AllowFullOpen = False
' Allow the user to get help. 
myColorDialog.ShowHelp = True
' Set the initial color select to the current color.
myColorDialog.Color = customersStyle.SelectionForeColor
' Show color dialog box.
myColorDialog.ShowDialog()
' Set selection fore color to selected color.
customersStyle.SelectionForeColor = myColorDialog.Color

Si applica a

Vedi anche