设置属性';Microsoft.Phone.Controls.ListPicker.ItemCountThresh

本文关键字:Phone Controls ListPicker ItemCountThresh Microsoft 属性 设置 | 更新日期: 2023-09-27 18:27:28

当我尝试通过模拟器运行我的应用程序时,它会中断,我得到以下消息

"设置属性Microsoft.Phone.Controls.ListPicker.ItemCountThreshold引发异常。"

有什么想法吗?

设置属性';Microsoft.Phone.Controls.ListPicker.ItemCountThresh

问题是不应该直接使用ListPickerItem;如果要直接在XAML中声明项,请使用字符串或任何其他类!

检查此样本:

<phone:PhoneApplicationPage 
    x:Class="PhoneApp.MainPage"
    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"
    xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
    xmlns:sys="clr-namespace:System;assembly=mscorlib"
    mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    shell:SystemTray.IsVisible="True">
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
            <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
            <TextBlock x:Name="PageTitle" Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
        </StackPanel>
        <StackPanel x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
            <toolkit:ListPicker ExpansionMode="FullScreenOnly">
                <sys:String>Item 1</sys:String>
                <sys:String>Item 2</sys:String>
                <sys:String>Item 3</sys:String>
            </toolkit:ListPicker>
        </StackPanel>
    </Grid>
</phone:PhoneApplicationPage>

正如您在这里看到的,只需要不使用ListPickerItem!

此外,请删除ItemCountThreshold属性;是只读属性,不应在XAML中设置!

尝试设置ExpansionMode="FullScreenOnly"。