Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
490
Flash the Outlook Bar to notify the user of a change
posted

I am trying to use the Outlook Bar as an area to notify users about specific information. If a condition is met I would like to flash the main area of the Notification bar red to notify the user that they need to do something. I have been able to do this for individual group boxes within the outlook bar but I want to do this for the main area where it says Navigation Pane.

Here is the code I am trying to use. The target name (Storyboard.TargetName="MyNotificationBarName") is currently pointing to the entire Outlook bar which is incorrect but I’m not sure what the Target is actually called.

 

       <Storyboard x:Name="Blink" x:Key="alertUser" AutoReverse="True">

            <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Background"

                                            Duration="0:0:1" RepeatBehavior="Forever" 

                                            Storyboard.TargetName="MyNotificationBarName">

                <ObjectAnimationUsingKeyFrames.KeyFrames>

                    <DiscreteObjectKeyFrame KeyTime="0:0:0.35">

                        <DiscreteObjectKeyFrame.Value>

                            <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">

                                <LinearGradientBrush.GradientStops>

                                    <GradientStop Color="#ff8b80" Offset="0.0" />

                                    <GradientStop Color="#e52115" Offset="0.5" />

                                    <GradientStop Color="#ff5736" Offset="1.0" />

                                </LinearGradientBrush.GradientStops>

                            </LinearGradientBrush>

                        </DiscreteObjectKeyFrame.Value>

                    </DiscreteObjectKeyFrame>

                </ObjectAnimationUsingKeyFrames.KeyFrames>

            </ObjectAnimationUsingKeyFrames>

        </Storyboard>

 

And then in my code behind I call this

Storyboard alertUser = (Storyboard)FindResource("alertUser");

alertUser.Begin();

 

Thanks ...

Parents Reply Children
No Data