2015-11-24 76 views
0

結合我與後續的領域類:如何過濾數組中的屬性數據,在XAML

public byte[] myByteArray; 

我結合數組在ListView值:

<GridViewColumn DisplayMemberBinding="{Binding myByteArray[1]}" /> 
<GridViewColumn DisplayMemberBinding="{Binding myByteArray[2]}" /> 
... 

當數組中的元素爲零時,我該如何將項留空?

Pseudocode: if(myByteArray[indexValue] == 0) display nothing in ListView 

由於提前,

+0

爲什麼你的代碼表示GridViewColumn,但你的僞代碼是ListView? –

+0

我基於ListView的幾個示例以這種方式使用它,我不知道下劃線原因,但它的工作方式與我希望的一樣。 – Telos

回答

0

我可能失去了一些東西在這裏,但使一個ListView空白,將其設置爲null。

if(myByteArray[indexValue]==0) 
    listView=null; 

要使特定項目變爲空白,請將該特定項目設置爲空。如

listView.Items.GetItemAt(index)=null; 
+0

我認爲這會將整個ListView設置爲空。我只想把這個特定的值留空。 – Telos

+0

@Telos嘗試 –

+0

@Telos是否有效? –

相關問題