ItemsControl.ItemStringFormat プロパティ

定義

文字列として表示される場合、ItemsControl の項目の書式設定方法を指定する複合文字列を取得または設定します。

public:
 property System::String ^ ItemStringFormat { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string ItemStringFormat { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.ItemStringFormat : string with get, set
Public Property ItemStringFormat As String

プロパティ値

文字列として表示される場合、ItemsControl の項目の書式設定方法を指定する複合文字列。

属性

次の例では、 を ItemStringFormat 使用してオブジェクトの一覧 DateTime の形式を指定します。

<ListBox xmlns:sys="clr-namespace:System;assembly=mscorlib"
         ItemStringFormat="MMMM d, yyyy">
  <sys:DateTime>2004/3/4</sys:DateTime>
  <sys:DateTime>2004/8/9</sys:DateTime>
  <sys:DateTime>2005/10/14</sys:DateTime>
  <sys:DateTime>2005/4/8</sys:DateTime>
</ListBox>
  
  <!--The results when the default culture is en-US:
      March 4, 2004
      August 9, 2004
      October 14, 2005,
      April 8, 2005-->

注釈

ItemStringFormat には、定義済み、複合、またはカスタムの文字列形式を指定できます。 文字列形式の詳細については、「 型の書式設定」を参照してください。 または ItemTemplateSelectorItemsControlItemTemplate設定した場合、ItemStringFormatプロパティは無視されます。

適用対象