PowerTools PlusPak for Windows Forms 8.0J
RecentlyUsedFontsCount プロパティ
使用例 

最近使用したフォントグループに表示できるフォント名項目の最大数を取得または設定します。
構文
Public Property RecentlyUsedFontsCount As Integer
public int RecentlyUsedFontsCount {get; set;}

プロパティ値

最近使用したフォントグループに表示できるフォント名項目の最大数を示すSystem.Int32。デフォルトは10です。
例外
例外解説
System.ArgumentOutOfRangeException 指定された値が0未満です。
解説
指定した値がRecentlyUsedFontsSystem.Collections.CollectionBase.Count未満の場合は、RecentlyUsedFontsの末尾にある項目が切り捨てられ、System.Collections.CollectionBase.CountRecentlyUsedFontsCountと同じになります。
使用例

次のサンプルコードは、GcFontPickerコントロールの最近使用したフォントを独自に定義する方法を示します。また、RecentlyUsedFontsCountを設定して、最近使用したフォントグループに表示される項目数を制限する方法も示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateGcFontPickerWithRecentlyUsedFonts()
{
    // Create an instance of GcFontPicker control.
    GcFontPicker gcFontPicker = new GcFontPicker();

    // Initialize the Name and Location of the gcFontPicker.
    gcFontPicker.Name = "gcFontPicker";
    gcFontPicker.Location = new Point(10, 50);

    // Initialize Recently used fonts.
    gcFontPicker.ShowRecentlyUsedFonts = true;
    gcFontPicker.RecentlyUsedFontsCount = 5;
    gcFontPicker.RecentlyUsedFonts.AddRange(new FontInfo[] 
    {
        gcFontPicker.AllFonts["MingLiU"],
        gcFontPicker.AllFonts["MS UI Gothic"],
        gcFontPicker.AllFonts["Nina"],
        gcFontPicker.AllFonts["Vrinda"]
    });
    gcFontPicker.ItemGroupStyle.RecentlyUsedFontsText = "My Recently Used Fonts";

    // Set the SelectedFont to the last item of RecentlyUsedFonts.
    gcFontPicker.SelectedFontInfo = gcFontPicker.RecentlyUsedFonts[gcFontPicker.RecentlyUsedFonts.Count - 1];

    // adds gcFontPicker to the form.
    this.Controls.Add(gcFontPicker);
}
Private Sub CreateGcFontPickerWithRecentlyUsedFonts()
    ' Create an instance of GcFontPicker control.
    Dim gcFontPicker As New GcFontPicker()

    ' Initialize the Name and Location of the gcFontPicker.
    gcFontPicker.Name = "gcFontPicker"
    gcFontPicker.Location = New Point(10, 50)

    ' Initialize Recently used fonts.
    gcFontPicker.ShowRecentlyUsedFonts = True
    gcFontPicker.RecentlyUsedFontsCount = 5
    gcFontPicker.RecentlyUsedFonts.AddRange(New FontInfo() {gcFontPicker.AllFonts("MingLiU"), gcFontPicker.AllFonts("MS UI Gothic"), gcFontPicker.AllFonts("Nina"), gcFontPicker.AllFonts("Vrinda")})
    gcFontPicker.ItemGroupStyle.RecentlyUsedFontsText = "My Recently Used Fonts"

    ' Set the SelectedFontInfo to the last item of RecentlyUsedFonts.
    gcFontPicker.SelectedFontInfo = gcFontPicker.RecentlyUsedFonts(gcFontPicker.RecentlyUsedFonts.Count - 1)

    ' adds gcFontPicker to the form.
    Me.Controls.Add(gcFontPicker)
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcFontPicker クラス
GcFontPicker メンバ
RecentlyUsedFonts プロパティ
RecentlyUsedFonts プロパティ

Send Feedback