1

ListBox のデータ テンプレートは、XamlReader.Load によって動的に設定されます。VisualTreeHelper.GetChild を使用して CheckBox オブジェクトを取得することで、Checked イベントをサブスクライブしています。このイベントは発生していません

コードスニペット

    public void SetListBox()
    {
        lstBox.ItemTemplate =
        XamlReader.Load(@"<DataTemplate xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' x:Name=""DropDownTemplate""><Grid x:Name='RootElement'><CheckBox  x:Name='ChkList' Content='{Binding " + TextContent + "}' IsChecked='{Binding " + BindValue + ", Mode=TwoWay}'/></Grid></DataTemplate>") as DataTemplate;

        CheckBox  chkList = (CheckBox)GetChildObject((DependencyObject)_lstBox.ItemTemplate.LoadContent(), "ChkList");

        chkList.Checked += delegate { SetSelectedItemText(); };
    }

    public CheckBox GetChildObject(DependencyObject obj, string name) 
    {
        for (int i = 0; i < VisualTreeHelper.GetChildrenCount(obj); i++)
        {
            DependencyObject c = VisualTreeHelper.GetChild(obj, i);
            if (c.GetType().Equals(typeof(CheckBox)) && (String.IsNullOrEmpty(name) || ((FrameworkElement)c).Name == name))
            {
                return (CheckBox)c;
            }
            DependencyObject gc = GetChildObject(c, name);
            if (gc != null)
                return (CheckBox)gc;
        }
        return null;
    }

チェックされたイベントを処理する方法は? 助けてください

4

2 に答える 2

1

が である理由を理解する必要がありItemTemplateますDataTemplate。リスト ボックスに表示する必要がある各項目に対して、LoadContent() メソッドが呼び出されます。これにより、この場合は新しいチェックボックスを含む、記述されたコンテンツの新しいインスタンスが作成されます。ListBoxItem のコンテンツとして割り当てられると、これらすべてがアイテムにバインドされます。

この場合のチェックボックスのすべてのインスタンスは独立したオブジェクトです。これで、実際の UI のどこにも使用されず、イベント ハンドラーがアタッチされた別の独立したインスタンスが作成されました。リスト内のアイテムのチェックボックスはこのハンドラーを共有しないため、イベント コードは呼び出されません。

于 2010-05-11T17:27:51.753 に答える
0

ItemTemplate を削除し、以下のコードを追加しました

                var checkBox = new CheckBox { DataContext = item };
                if (string.IsNullOrEmpty(TextContent)) checkBox.Content = item.ToString();
                else
                    checkBox.SetBinding(ContentControl.ContentProperty,
                                        new Binding(TextContent) { Mode = BindingMode.OneWay });
                if (!string.IsNullOrEmpty(BindValue))
                    checkBox.SetBinding(ToggleButton.IsCheckedProperty,
                                        new Binding(BindValue) { Mode = BindingMode.TwoWay });
                checkBox.SetBinding(IsEnabledProperty, new Binding("IsEnabled") { Mode = BindingMode.OneWay });
                checkBox.Checked += (sender, RoutedEventArgs) => { SetSelectedItemText(true, ((CheckBox)sender).GetValue(CheckBox.ContentProperty).ToString()); };
                checkBox.Unchecked += (sender, RoutedEventArgs) => { SetSelectedItemText(true, ((CheckBox)sender).GetValue(CheckBox.ContentProperty).ToString()); };

これにより問題が修正されました

于 2010-06-01T08:43:15.557 に答える