0
Xamarinでオブジェクトの値によって行の要素が異なるリストビューを作成しようとしています。 たとえば、ノートのモデル:XAMLでXamarinリストビューで異なる行の色を設定する方法
public class Note
{
public string Title { get; set; }
public string Content { get; set; }
public bool Active { get; set; }
}
:
<Label Text="{Binding Title}" TextColor="#f35e20" />
<Label Text="{Binding Content}" TextColor="#503026" />
<Button BackgroundColor="#000" />
そして、私はActive
フィールドに応じて、ボタンBackgroundColor
を持つことを望みます。 Active
がfalse
の場合、BackgroundColor
は赤に設定されます。 true
の場合、BackgroundColor
は緑に設定されます。
どうすればいいですか?ありがとうございました。
ありがとうございます。よく働く。 P.S. BackgroundColorのBindingプロパティの後の昏睡状態でなければなりません。 – Klick