PowerTools MultiRow for Windows Forms 8.0J
NamedCellStyles プロパティ (GcMultiRow)
使用例 

定義済みのNamedCellStyleを取得します。
構文
Public ReadOnly Property NamedCellStyles As NamedCellStyleDictionary
public NamedCellStyleDictionary NamedCellStyles {get;}

プロパティ値

定義済みのNamedCellStyleを表すNamedCellStyleDictionary
解説
GcMultiRowコントロールを作成した後、頻繁に使用するCellStyleを定義し、使用時に名前を指定してそのセルスタイルをここから取得できます。各NamedCellStyleはGcMultiRowのスキンとして使用可能であり、多数のスキンを定義してここに格納できます。
使用例
次のサンプルコードは、"AlternatingColumnsDefaultCellStyle"と"ColumnsDefaultCellStyle"を実装する方法を示します。フォームが読み込まれるとき、GcMultiRowTemplateを1つ追加します。このTemplateは、アプリケーションが起動された後、奇数番目の列に"ColumnsDefaultCellStyle"を設定し、偶数番目の列に"AlternatingColumnsDefaultCellStyle"を設定します。"AlternatingColumnsDefaultCellStyle"または"ColumnsDefaultCellStyle"を変更する場合は、GcMultiRow.NamedCellStylesの対応する項目を変更するだけで済みます。そうすると、新しいCellStyleが適用されます。このサンプルコードは、NamedCellStyleクラスに示されている詳細なコード例の一部を抜粋したものです。
void setThirdNamedCellStyle_Click(object sender, EventArgs e)
{
    CellStyle alternatingColumnsDefaultCellStyle = new CellStyle();
    alternatingColumnsDefaultCellStyle.BackColor = Color.White;
    alternatingColumnsDefaultCellStyle.NullValue = "Text";
    //Change the "AlternatingColumnsDefaultCellStyle"
    this.gcMultiRow1.NamedCellStyles["AlternatingColumnsDefaultCellStyle"] = alternatingColumnsDefaultCellStyle;

    CellStyle columnsDefaultCellStyle = new CellStyle();
    columnsDefaultCellStyle.PatternColor = Color.DarkSlateGray;
    columnsDefaultCellStyle.PatternStyle = MultiRowHatchStyle.HorizontalBrick;
    //Change the "ColumnsDefaultCellStyle"
    this.gcMultiRow1.NamedCellStyles["ColumnsDefaultCellStyle"] = columnsDefaultCellStyle;

    //You can load one predefined NamedCellStyleDictionary from one file.
    //this.gcMultiRow1.NamedCellStyles.Load(@"C:\temp\NamedCellStyles.xml");
    //You can save the NamedCellStyleDictionary to one file.
    //this.gcMultiRow1.NamedCellStyles.Save(@"C:\temp\NamedCellStyles.xml");
}
Private Sub setThirdNamedCellStyle_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setThirdStyle.Click
    Dim alternatingColumnsDefaultCellStyle As New CellStyle()
    alternatingColumnsDefaultCellStyle.BackColor = Color.White
    alternatingColumnsDefaultCellStyle.NullValue = "Text"
    'Change the "AlternatingColumnsDefaultCellStyle"
    Me.gcMultiRow1.NamedCellStyles("AlternatingColumnsDefaultCellStyle") = alternatingColumnsDefaultCellStyle

    Dim columnsDefaultCellStyle As New CellStyle()
    columnsDefaultCellStyle.PatternColor = Color.DarkSlateGray
    columnsDefaultCellStyle.PatternStyle = MultiRowHatchStyle.HorizontalBrick
    'Change the "ColumnsDefaultCellStyle"
    Me.gcMultiRow1.NamedCellStyles("ColumnsDefaultCellStyle") = columnsDefaultCellStyle

    'You can load one predefined NamedCellStyleDictionary from one file.
    'this.gcMultiRow1.NamedCellStyles.Load(@"C:\temp\NamedCellStyles.xml");
    'You can save the NamedCellStyleDictionary to one file.
    'this.gcMultiRow1.NamedCellStyles.Save(@"C:\temp\NamedCellStyles.xml");
End Sub
参照

GcMultiRow クラス
GcMultiRow メンバ
NamedCellStyle クラス
CellStyle クラス
Template.NamedCellStyles

 

 


© 2008-2015 GrapeCity inc. All rights reserved.