|
153 | 153 | <DataTrigger Binding="{Binding NeedsBaseAddresses}" Value="True"> |
154 | 154 | <DataTrigger.EnterActions> |
155 | 155 | <BeginStoryboard x:Name="BaseAddrGlow"> |
156 | | - <Storyboard RepeatBehavior="3x"> |
157 | | - <ColorAnimation Storyboard.TargetProperty="(Effect).(DropShadowEffect.Color)" |
158 | | - To="Orange" Duration="0:0:0.4" AutoReverse="True"/> |
159 | | - <DoubleAnimation Storyboard.TargetProperty="(Effect).(DropShadowEffect.Opacity)" |
160 | | - To="1" Duration="0:0:0.4" AutoReverse="True"/> |
| 156 | + <Storyboard RepeatBehavior="Forever"> |
| 157 | + <ColorAnimation Storyboard.TargetProperty="(Button.BorderBrush).(SolidColorBrush.Color)" |
| 158 | + To="Orange" Duration="0:0:0.5" AutoReverse="True"/> |
161 | 159 | </Storyboard> |
162 | 160 | </BeginStoryboard> |
163 | 161 | </DataTrigger.EnterActions> |
164 | 162 | <DataTrigger.ExitActions> |
165 | 163 | <StopStoryboard BeginStoryboardName="BaseAddrGlow"/> |
166 | 164 | </DataTrigger.ExitActions> |
| 165 | + <Setter Property="BorderThickness" Value="2"/> |
| 166 | + <Setter Property="BorderBrush"> |
| 167 | + <Setter.Value> |
| 168 | + <SolidColorBrush Color="Transparent"/> |
| 169 | + </Setter.Value> |
| 170 | + </Setter> |
167 | 171 | </DataTrigger> |
168 | 172 | </Style.Triggers> |
169 | 173 | </Style> |
170 | 174 | </Button.Style> |
171 | | - <Button.Effect> |
172 | | - <DropShadowEffect Color="Transparent" ShadowDepth="0" BlurRadius="15" Opacity="0"/> |
173 | | - </Button.Effect> |
174 | 175 | <StackPanel Orientation="Horizontal"> |
175 | 176 | <TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="13" VerticalAlignment="Center" Margin="0,0,6,0"/> |
176 | 177 | <TextBlock Text="Enter base addresses..."/> |
|
198 | 199 | <DataTrigger Binding="{Binding HasDetectedBuild}" Value="True"> |
199 | 200 | <DataTrigger.EnterActions> |
200 | 201 | <BeginStoryboard x:Name="SqlBuildGlow"> |
201 | | - <Storyboard RepeatBehavior="3x"> |
202 | | - <ColorAnimation Storyboard.TargetProperty="(Effect).(DropShadowEffect.Color)" |
203 | | - To="#40C040" Duration="0:0:0.4" AutoReverse="True"/> |
204 | | - <DoubleAnimation Storyboard.TargetProperty="(Effect).(DropShadowEffect.Opacity)" |
205 | | - To="1" Duration="0:0:0.4" AutoReverse="True"/> |
| 202 | + <Storyboard RepeatBehavior="Forever"> |
| 203 | + <ColorAnimation Storyboard.TargetProperty="(Button.BorderBrush).(SolidColorBrush.Color)" |
| 204 | + To="#40C040" Duration="0:0:0.5" AutoReverse="True"/> |
206 | 205 | </Storyboard> |
207 | 206 | </BeginStoryboard> |
208 | 207 | </DataTrigger.EnterActions> |
209 | 208 | <DataTrigger.ExitActions> |
210 | 209 | <StopStoryboard BeginStoryboardName="SqlBuildGlow"/> |
211 | 210 | </DataTrigger.ExitActions> |
| 211 | + <Setter Property="BorderThickness" Value="2"/> |
| 212 | + <Setter Property="BorderBrush"> |
| 213 | + <Setter.Value> |
| 214 | + <SolidColorBrush Color="Transparent"/> |
| 215 | + </Setter.Value> |
| 216 | + </Setter> |
212 | 217 | </DataTrigger> |
213 | 218 | </Style.Triggers> |
214 | 219 | </Style> |
215 | 220 | </Button.Style> |
216 | | - <Button.Effect> |
217 | | - <DropShadowEffect Color="Transparent" ShadowDepth="0" BlurRadius="15" Opacity="0"/> |
218 | | - </Button.Effect> |
219 | 221 | <StackPanel Orientation="Horizontal"> |
220 | 222 | <TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="13" VerticalAlignment="Center" Margin="0,0,6,0"/> |
221 | 223 | <TextBlock Text="For a SQL version..."/> |
|
229 | 231 | <DataTrigger Binding="{Binding HasXmlFrameInput}" Value="True"> |
230 | 232 | <DataTrigger.EnterActions> |
231 | 233 | <BeginStoryboard x:Name="SymSrvGlow"> |
232 | | - <Storyboard RepeatBehavior="3x"> |
233 | | - <ColorAnimation Storyboard.TargetProperty="(Effect).(DropShadowEffect.Color)" |
234 | | - To="#40C040" Duration="0:0:0.4" AutoReverse="True"/> |
235 | | - <DoubleAnimation Storyboard.TargetProperty="(Effect).(DropShadowEffect.Opacity)" |
236 | | - To="1" Duration="0:0:0.4" AutoReverse="True"/> |
| 234 | + <Storyboard RepeatBehavior="Forever"> |
| 235 | + <ColorAnimation Storyboard.TargetProperty="(Button.BorderBrush).(SolidColorBrush.Color)" |
| 236 | + To="#40C040" Duration="0:0:0.5" AutoReverse="True"/> |
237 | 237 | </Storyboard> |
238 | 238 | </BeginStoryboard> |
239 | 239 | </DataTrigger.EnterActions> |
240 | 240 | <DataTrigger.ExitActions> |
241 | 241 | <StopStoryboard BeginStoryboardName="SymSrvGlow"/> |
242 | 242 | </DataTrigger.ExitActions> |
| 243 | + <Setter Property="BorderThickness" Value="2"/> |
| 244 | + <Setter Property="BorderBrush"> |
| 245 | + <Setter.Value> |
| 246 | + <SolidColorBrush Color="Transparent"/> |
| 247 | + </Setter.Value> |
| 248 | + </Setter> |
243 | 249 | </DataTrigger> |
244 | 250 | </Style.Triggers> |
245 | 251 | </Style> |
246 | 252 | </Button.Style> |
247 | | - <Button.Effect> |
248 | | - <DropShadowEffect Color="Transparent" ShadowDepth="0" BlurRadius="15" Opacity="0"/> |
249 | | - </Button.Effect> |
250 | 253 | <StackPanel Orientation="Horizontal"> |
251 | 254 | <TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="13" VerticalAlignment="Center" Margin="0,0,6,0"/> |
252 | 255 | <TextBlock Text="MS Symbol Server"/> |
|
0 commit comments