0
나는 타원이있는 그리드가 있는데, 마우스 위에 있으면 타원이 붉은 색으로 채워 져야합니다. 어떻게하면 돼? 타원에서 방아쇠를 놓으면 마우스 오버 오버에서만 타원형으로 나타납니다. 하지만 난 그 색상을 변경해야합니다 o 마우스가 타원의 부모 그리드에 끝났습니다.부모 모눈 마우스 오버에서 타원 속성 변경 WPF
<UserControl x:Class="DeviceIcon"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="31" d:DesignWidth="31">
<Grid Background="#00000000" Name="MainGrid">
<Ellipse Name="BackCircle" Width="30" Height="30" Fill="Lavender" Stroke="Red" >
</Ellipse>
</Grid>