2
이미지 변경을위한 열거 형 데이터 트리거
배경 이미지가 고정 된 버튼이 있는데 그 위에 작은 오버레이 이미지를 표시하고 싶습니다. 선택할 오버레이 이미지 LapCounterPingStatus는 해당 뷰 모델의 종속성 속성 ( )에 따라 다릅니다 . 이것이 내가 지금까지 얻은 것입니다. <Button> <Grid> <Image Stretch="None"> <!-- Background Image --> <Image.Style> <Style TargetType="{x:Type Image}"> <Setter Property="Source" Value="/Images/Pingn.png"/> </Style> </Image.Style> </Image> …