'宣言 Public Property IconsStyle As IconsStyle
public IconsStyle IconsStyle {get; set;}
'宣言 Public Property IconsStyle As IconsStyle
public IconsStyle IconsStyle {get; set;}
Offic365 テーマ形式のアイコンを表示するには IconsStyle.Office365 を使用し、そうでない場合は IconsStyle.Default を使用します。
C1FlexGrid.Tree および C1FlexGridGroupPanel は C1FlexGrid と同じアイコンスタイルを使用します。
このプロパティは C1Theme を使用してカスタマイズできます。C1Theme を適用してこのプロパティをセットアップするには、C1FlexGrid\Icons Style ノード値を設定します。 Office365 テーマは IconsStyle を IconsStyle.Office365 に設定し、他のテーマはこれを IconsStyle.Default に設定します。
FlexGridGroupPanel は、アタッチされた FlexGrid からアイコンスタイルを受け取ります。
C1Theme はこのプロパティに影響します。
var flexGrid = new C1.Win.FlexGrid.C1FlexGrid(); flexGrid.IconsStyle = IconsStyle.Office365;
//C1FlexGridGroupPanel を使用するには、c1.Win.FlexGrud.GroupPanel NuGet パッケージをインストールします。 var flexGrid = new C1.Win.FlexGrid.C1FlexGrid(); flexGrid.IconsStyle = IconsStyle.Office365; var flexGridGroupPanel = new C1.Win.C1FlexGrid.C1FlexGridGroupPanel(); flexGridGroupPanel.FlexGrid = flexGrid; //flexGridGroupPanel の ClearButtons には Office365 アイコンが表示されます。 flexGrid.IconsStyle = IconsStyle.Default; //flexGrid の ClearButtons にはデフォルトアイコンが表示されます。
//C1ThemeController を使用するには、c1.Win.Themes NuGet パッケージをインストールします。 var flexGrid = new C1.Win.FlexGrid.C1FlexGrid(); var c1ThemeController = new C1.Win.C1Themes.C1ThemeController(); c1ThemeController1.SetTheme(this.flexGrid, "Office365White"); //flexGrid.IconsStyle = IconsStyle.Office365. 他の Office365 テーマと同じ。 c1ThemeController1.SetTheme(this.flexGrid, "Material"); //flexGrid.IconsStyle = IconsStyle.Default. 他の非 Office365 テーマと同じ。