Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a CheckBox and a TextBox. During the runtime,
if the CheckBox is Checked then the TextBox is enabled.

I did it using following code

private void checkTime_Checked(object sender, RoutedEventArgs e)
{
    if (checkTime.IsChecked == true)
    {
        txtTime_SR.IsEnabled = true;
    }
}

What I need to do is, to disable the TextBox when the CheckBox is Unchecked during runtime.

Any idea of doing this ?

share|improve this question
what is RoutedEventArgs ? – andy Oct 30 '12 at 8:36
1  
Winforms? ASP ? WPF ? – Kek Oct 30 '12 at 8:38

3 Answers

up vote 1 down vote accepted

Reading your post and comments, I'll guess you are doing WPF or silverlight. Then, in that case, you may do it all in XAML :

<CheckBox x:Name="checkTime" />
<TextBox x:Name="txtTime_SR" IsEnabled="{Binding IsChecked, ElementName=checkTime, Converter={StaticResource NotConverter}, Mode=OneWay}"/>

Then, you need to create the converter. This can be done by reading post here : How to bind inverse boolean properties in WPF?

Hope it helps

share|improve this answer
Great. This worked. Thanks :) – Yasas C Perera Oct 30 '12 at 8:54

If I understand, you want the textbox to be enabled when the checkbox is checked, and for it to be disabled when the checkbox is unchecked?

private void checkTime_Checked(object sender, RoutedEventArgs e)
{
    txtTime_SR.Enabled = checkTime.Checked;
}

Are you using the standard .NET TextBox and CheckBox controls?

EDIT: Ok, so it is WPF. Do this:

private void checkTime_Checked(object sender, RoutedEventArgs e)
{
    txtTime_SR.IsEnabled = checkTime.IsChecked;
}
share|improve this answer
I'm not well experienced in .Net. For the text box there is no "Enabled" method. There is only "IsEnabled" method. :( – Yasas C Perera Oct 30 '12 at 8:40
Then try with IsEnabled and IsChecked - it should work if they aren't read-only properties. – davenewza Oct 30 '12 at 8:42
private void checkTime_Checked(object sender, RoutedEventArgs e)
{
 txtTime_SR.Enabled = checkTime.Checked;
}

OR

private void checkTime_Checked(object sender, RoutedEventArgs e)
{
    txtTime_SR.IsEnabled = checkTime.IsChecked;
}
share|improve this answer

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.