2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ギャラリーで選択している項目の背景色を変える方法

Posted at

ギャラリーで選択した項目の背景色を変えたい場合

image.png

ギャラリーのFillプロパティの設定を変更したくなりますが、Fillプロパティはギャラリー全体の背景色なので、この場合は使用しません。
変更するのはギャラリーのTemplateFillプロパティです。

TemplateFillプロパティに以下の数式を記入します。

If(ThisItem.IsSelected,RGBA(250,200,200,1),RGBA(0, 0, 0, 0))

ThisItem.IsSelectedはギャラリー内の項目を選択した際にtrueを返します。
If関数の第1引数に指定することで、選択した項目のみがtrueとなり、背景色が変わります。

ギャラリーを配置した際に、初期設定で表示されるRectangleも、VisibleプロパティにThisItem.IsSelectedが使用されています。
これだけでは選択した項目が分かりにくいので、背景色も変更すると親切だと思います。

ぜひお試しください。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?