WPF Inner Glow Effect
问题 Does anyone know how to make an Inner Glow effect in WPF without using expression blend or deprecated BitmapEffects? Sample image: For instance, here is some xaml for a button with an image and some text. I want this button to have an inner glow (not an outer glow): <Button Click="HandleDeleteRows" Style="{StaticResource ButtonCellStyle}"> <DockPanel> <Image Style="{StaticResource DeleteButtonImage}" /> <TextBlock Style="{StaticResource DeleteButtonCaption}" /> </DockPanel> </Button> 回答1: