我想將我的WPF中的項目源綁定到靜態數組。我試圖通過這樣做:綁定到WPF中的靜態數組?
ItemsSource="{Binding XLTT.Core.Models.names}"
但它不起作用。爲什麼?另外,我看到其他人綁定到對象。可以綁定到一個靜態數組,還是應該綁定到一個對象?
編輯:
這裏是names
定義的類。
namespace XLTT.Core.Models
{
internal class TTColumn
{
internal string ColumnName;
internal string ColumnType;
internal int ColumnOrder;
internal bool IsRequired;
internal int ColumnWidth;
public static string[] names = {"Matt", "Joanne", "Robert"};
}
}
哪裏定義您的靜態數組?你能告訴我們這個班級的定義嗎? – Kryptos
只要數組不是私有的,它的屬性就可以。 http://stackoverflow.com/questions/936304/binding-to-static-property – Maximus
@Maximus:嘗試寫作ItemsSource =「{綁定x:靜態本地:XLTT.Core.Models.names}但沒有工作 – user1283776