ItemsControl.ItemStringFormat Proprietà

Definizione

Ottiene o imposta una stringa composita che specifica come formattare gli elementi nell'oggetto ItemsControl se questi vengono visualizzati come stringhe.

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

Valore della proprietà

Una stringa composita che specifica come formattare gli elementi nell'oggetto ItemsControl se questi vengono visualizzati come stringhe.

Attributi

Esempio

Nell'esempio seguente viene utilizzato per ItemStringFormat specificare il formato di un elenco di DateTime oggetti .

<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-->

Commenti

ItemStringFormat può essere un formato di stringa predefinito, composito o personalizzato. Per altre informazioni sui formati stringa, vedere Formattazione dei tipi. Se si imposta o ItemTemplateItemTemplateSelector di un ItemsControloggetto , la ItemStringFormat proprietà viene ignorata.

Si applica a