WinForms FlexGrid の特定の行、列、またはセル範囲のスタイルを設定するには、行、列、またはセル範囲オブジェクトの StyleNew プロパティを使用できます。
このアプローチは、スタイルを再利用する必要がない場合に、特定のオブジェクトにスタイルを設定するために便利です。特定のスタイルを再利用するには、次のセクションで説明するように、CellStyle オブジェクトを使用してスタイルを作成する必要があります。
このアプローチでは、カスタムスタイルを CellStyle クラスのオブジェクトとして作成し、Add メソッドを使用してそれを Styles コレクションに追加します。次に、そのプロパティを定義し、必要に応じて行、列、またはセル範囲に適用します。上記のように、このアプローチは、特定のスタイルを繰り返し使用する必要がある場合にたいへん便利です。
The following image showcases custom styling applied to the first row in FlexGrid.
Use the following code to apply styling to the first row in FlexGrid by creating a reusable custom style. In this example, we create a new custom style and add it to the Styles collection after defining the BackColor, ForeColor, BackgroundImage, and BackgroundImageLayout properties to be set through the new custom style.