私はこのコードを持っている:XamarinフォームのC#でApp.xamlの色にアクセスする方法は? App.xamlで
<Application.Resources>
<ResourceDictionary>
<Color x:Key="Yellow">#ffd966</Color>
</ResourceDictionary>
</Application.Resources>
をし、C#で、私はこのコードを持っている:
public Color BackgroundColor
{
get { return IsSelected ? Color.Yellow : Color.White; }
}
を私はApp.xamlから色でColor.Yellowを変更したいと思います。 C#でApp.xamlの色をどのように参照できますか?
isSelected? (Color)Application.Current.Resources ["Yellow"]:Color.White; – Dilmah
あなたは答えを投稿することができ、私はそれを受け入れるでしょう – Uros