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

Instead of disabling the button which happens automatically, i would like to hide (or rather collapse the visibility of) the button.

share|improve this question
myBtn.Visibility = Visibility.Collapsed; – Alex Oct 15 '10 at 18:33
2  
this is not helping... i know how to set a property. – akonsu Oct 15 '10 at 18:35

2 Answers

up vote 6 down vote accepted

You could use a Style and Triggers, assuming that the command is in charge of setting the Button enabled/disabled:

        <Button x:Name="btnMoveUp"
                Command="{x:Static local:Window1.MoveItemUp}">
            <Button.Style>
                <Style TargetType="{x:Type Button}" >
                    <Style.Triggers>
                        <Trigger Property="IsEnabled" Value="False">
                            <Setter Property="Visibility" Value="Collapsed" />
                        </Trigger>
                    </Style.Triggers>
                </Style>
            </Button.Style>
        </Button>

Note that you can define this Style at a higher scope and share it - I just put it right with the Button for a more compressed example.

share|improve this answer

Use the BooleanToVisibilityConverter and bind to a bool as described here.

share|improve this answer
this is a possibility, thanks. can this be done without adding an extra property? trying to reduce the amount of code. – akonsu Oct 15 '10 at 18:33

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.