Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

hey I create a usercontrol in my project. I want when its Visibility property is changed, run a line of code

 VisualStateManager.GoToState(this, "Normal", true);

this property is binding to a data source.

    <usercontrol:CorrectAnswerMessage Grid.Column="1" x:Name="correct"  
Visibility="{Binding IsTrueAnswer,Mode=TwoWay}" VerticalAlignment="Center" 
HorizontalAlignment="Left"></usercontrol:CorrectAnswerMessage>

I looking for a way to create a event for Visibility property. when this property is changed , the event is fired.

here is my user control

<UserControl
x:Class="Lifener.UserControls.CorrectAnswerMessage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Lifener.UserControls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="500">
<Grid x:Name="CorrectResult" Width="400" Height="350" Visibility="Visible"  HorizontalAlignment="Center" Margin="0">

    <TextBlock Text="&#xE17E;" FontSize="120"  FontFamily="Segoe UI Symbol" Padding="0" Margin="0"     VerticalAlignment="Center" HorizontalAlignment="Center"  />
    <TextBlock  TextAlignment="Center" Text="&#xE17F;" FontSize="60" FontFamily="Segoe UI Symbol" Margin="130,30,55,215" />
    <TextBlock x:Name="Like" TextAlignment="Center" Text="&#xE19F;" FontSize="60" FontFamily="Segoe UI Symbol" Margin="165,30,20,0" Foreground="Green" RenderTransformOrigin="0.5,0.5" Height="104" VerticalAlignment="Top"/>
    <TextBlock x:Uid="AnswerIsRight" HorizontalAlignment="Left" Margin="185,140,0,0"  TextWrapping="Wrap" Text="Hooora, Right. You are awsome." VerticalAlignment="Top" Width="185" Height="140" TextAlignment="Center" FontSize="28" FontWeight="Bold"/>

    <VisualStateManager.VisualStateGroups>
        <VisualStateGroup x:Name="CommonGroups">
            <VisualState x:Name="Normal" >
                <VisualState.Storyboard>
                    <Storyboard>
                        <ObjectAnimationUsingKeyFrames Storyboard.TargetName="Like"
                                                    Storyboard.TargetProperty="Foreground"
                                                    Duration="0:0:2.5"
                                                    AutoReverse="True"
                                                    RepeatBehavior="Forever">

                            <DiscreteObjectKeyFrame Value="Red" KeyTime="0"></DiscreteObjectKeyFrame>
                        </ObjectAnimationUsingKeyFrames>

                    </Storyboard>
                </VisualState.Storyboard>
            </VisualState>
        </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>


</Grid>

share|improve this question
What is happening when you run it? What should happen? This question is too light on detail for us to help – ZombieSheep Dec 3 '12 at 16:23
i don't know where I can call VisualStateManager.GoToState(this, "Normal", true); – Mahdi Dec 3 '12 at 16:26

1 Answer

If you're not using MVVM, then you could call GoToState in the setter for IsTrueAnswer.

With MVVM, I'm not sure what the best way is. Maybe raise an event VisibilityChanged from the user control's model:

public partial class MyModel
{
    public event EventArgs VisibilityChanged;

    private bool _isTrueAnswer;
    public bool IsTrueAnswer
    {
        get { return _isTrueAnswer; }
        set
        {
            _isTrueAnswer = value;
            VisibilityChanged(this, EventArgs.Empty);
        }
    }

    // etc...
}

And add a listener from the code-behind of your page:

public MyPage()
{
    ((MyModel)MyUserControl.DataContext).VisibilityChanged += (sender, args) => {
        VisualStateManager.GoToState(this, "Normal", true);
    };
}
share|improve this answer
user control don't have any VisibilityChanged event – Mahdi Dec 3 '12 at 16:59
@sma I know, but you can create a custom event. You could also just listen for PropertyChanged and check the property name, but I think it's clearer to raise a separate event for this kind of thing. – dbaseman Dec 3 '12 at 17:25
can i ask you to put a sample code for me. – Mahdi Dec 3 '12 at 17:28
@sma sure, please see the update above... – dbaseman Dec 3 '12 at 17:32
my problem is how can listen to PropertyChange – Mahdi Dec 3 '12 at 17:34
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.