如何禁用listboxitem Wp8的虚拟化

时间:2015-02-12 10:27:12

标签: windows-phone-8 checkbox listbox

我无法在VirtualizingStackPanel下为列表框禁用Virtualizing属性。我只获取VirtualizationMode属性。 实际上我需要在listbox下获取checkbox元素。已经有几种方法,但最合适的是我得到here 但我得到ItemContainerGenerator为null。 在更多rnd后我发现我需要设置IsVirtualizing = false来获取ItemContainerGenerator。 xaml是::

<ListBox x:Name="my_list" Grid.Row="0">
            <ItemsControl.ItemTemplate >
                <DataTemplate >
                    <StackPanel Orientation="Horizontal" >
                        <CheckBox x:Name="cbx_state"  Tag="{Binding}"/>
                        <TextBlock x:Name="txt_string" Text="{Binding}" VerticalAlignment="Center" FontSize="34" />
                    </StackPanel>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ListBox>

我无法获得VirtualizingStackPanel.isvertualing属性。我试图获取cbx_state。

1 个答案:

答案 0 :(得分:1)

我已经这样做了我从c#检查了复选框 在Page1.xaml:

 <phone:PhoneApplicationPage
x:Class="PhoneApp3.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d"
shell:SystemTray.IsVisible="True">

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid Background="AliceBlue">
<ListBox x:Name="my_list" Height="200" Grid.Row="0">
    <ItemsControl.ItemTemplate >
        <DataTemplate >
            <StackPanel Orientation="Horizontal" >
                <CheckBox x:Name="cbx_state"  Tag="{Binding BindsDirectlyToSource=True}"/>
                    <TextBlock x:Name="txt_string" Text="{Binding BindsDirectlyToSource=True}" VerticalAlignment="Center" FontSize="34" />
            </StackPanel>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ListBox>
</Grid>

在page1.cs中

namespace PhoneApp3
{
public partial class Page1 : PhoneApplicationPage
{
    public Page1()
    {
        InitializeComponent();
        String[] names = { "Virat", "Rohit", "Rahane", "Umesh", "Axar" };
        my_list.ItemsSource = names;
        this.Loaded += Page1_Loaded;
    }

    void Page1_Loaded(object sender, RoutedEventArgs e)
    {
        GetItemsRecursive(my_list);
    }

    private void GetItemsRecursive(DependencyObject lb)
    {
        var childrenCount = VisualTreeHelper.GetChildrenCount(lb);

        for (int i = 0; i < childrenCount; i++)
        {
            var child = VisualTreeHelper.GetChild(lb, i);

            if (child is CheckBox) // specific/child control 
            {
                CheckBox targeted_element = (CheckBox)child;

                targeted_element.IsChecked = true;

                if (targeted_element.IsChecked == true)
                {

                    return;
                }
            }

            GetItemsRecursive(child);
        }
    }
}
 }