I'm getting an error where chkBox1 does not exist in the current context, anyone has a solution to this?

Here is the XAML:

 <ListBox ItemsSource="{Binding Files}" Margin="0,42,0,115" Name="lstBox1">
                <ListBox.ItemTemplate>
                    <DataTemplate >
                        <CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay}" Content="{Binding FileName}" Name="chkBox1" />
                    </DataTemplate>
                </ListBox.ItemTemplate>
            </ListBox>

Here is the code that has the chkBox1 in it:

private void button2_Click(object sender, RoutedEventArgs e)
        {
            ViewDiskModel model = this.ContentPanel.DataContext as ViewDiskModel;


            if (chkBox1.IsChecked == true)
            {
                model.DeleteSelectedFiles.Execute(null);


                MessageBox.Show("Files Successfully Deleted.");
            }
            else
            {
                MessageBox.Show("Please select a file to delete.");
            }

        }
link|improve this question

54% accept rate
Are you sure you posted the right code? the second block dosent have any refrence to chkBox1 – Tom Squires Jul 4 '11 at 14:18
@Tom Squires Is this not? if (chkBox1.IsChecked == true) I dun think this is right either. – lala Jul 4 '11 at 16:03
The code was changed – Tom Squires Jul 4 '11 at 16:52
It was there long ago ._. All i did was editing my ViewDiskModel class. – lala Jul 5 '11 at 2:17
feedback

3 Answers

up vote 2 down vote accepted

If there are many Files there will be many check boxes. How would you distinguish between these when you specify a single name?

Do not refer to the View (control) in the ViewModel. Replace the string collection (filename collection) with a collection of File. Make sure the File class has two properties: Name and IsSelected.

Then bind the content of the check box to the Name and the IsChecked Property to the IsSelected property.

That way you only have to check the IsSelected property in the ViewMODEL, not in the view.

Suggestion

    class File : INotifyPropertyChanged  //  implementation not added
    {
        private string _name;
        public string Name
        {
            get { return _name; }
            set
            {
                if(_name != value)
                {
                    _name = value;
                    OnPropertyChanged("Name");
                }
            }
        }

        private boolean _isSelected;
        public boolean IsSelected
        {
            get { return _isSelected; }
            set
            {
                if(_isSelected != value)
                {
                    _isSelected = value;
                    OnPropertyChanged("IsSelected");
                }
            }
        }
    }

    class ViewDiskModel : INotifyPropertyChanged // implementation missing
    {
        private ObservableCollection<File> _files;

        public ObservableCollection<File> Files
        {
            get
            {
                return _files;
            }
set
            {
                if(_files != value)
                {
                    _files = value;
                    OnPropertyChanged("Files");
                }
            }
        }
    } 

XAML:

<ListBox ItemsSource="{Binding Files}" Margin="0,42,0,115" Name="lstBox1">
    <ListBox.ItemTemplate>
        <DataTemplate >
            <CheckBox IsChecked="{Binding IsSelected, Mode=TwoWay}"
                      Content="{Binding FileName}"/>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>  

Then:

private void Button2_Click(object sender, RoutedEventArgs e)
{
    ViewDiskModel model = this.ContentPanel.DataContext as ViewDiskModel;

    if(model.Files.Any(file => file.IsSelected))
    {
        model.DeleteSelectedFiles.Execute(null);
        MessageBox.Show("Files Successfully Deleted.");
    }
    else
    {
        MessageBox.Show("Please select files to delete.");
    }
}
link|improve this answer
your idea is great, but i'm not sure where to change. – lala Jul 4 '11 at 14:39
Please post the code of the ViewDiskModel class and I will make an example. – Erno Jul 4 '11 at 14:43
I have Edited my question and added the ViewDiskModel class. – lala Jul 4 '11 at 14:52
You already had almost all of it. See my suggestion. – Erno Jul 4 '11 at 15:06
So, am i to replace that files property over my current files and my loadfiles? – lala Jul 4 '11 at 15:20
show 7 more comments
feedback

DataTemplate controls are not available by name in code behind, because they are not members of your Window or Page (or whatever else) class. This article has a solution. Basically, subscribe to the Loaded event of the control you want, and in the code behind, save the event's sender parameter, which is the control in question.

link|improve this answer
thanks for your contribution – lala Jul 4 '11 at 16:31
feedback

If checkbox is inside the listbox you can not access it directly. you have to do it like that:

CheckBox chkBox1 = (CheckBox)lstBox1.Controls[index_of_the_list_item].FindControl("chkBox1");

Only then you can operate using that checkbox:

if(chkBox1.checked ){}

You have to use ID to find a control though, not it's name. And somehow you need to know what index of the list you want to check...

link|improve this answer
Now i'm receiving an error where [index_of_the_list_item] does not exist in the current context. – lala Jul 4 '11 at 14:27
I've solved it, thanks for your contribution :) – lala Jul 5 '11 at 2:55
feedback

Your Answer

 
or
required, but never shown

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