Windows Phone列表选择器设置selectedIndex [英] Windows phone listpicker set selectedIndex

查看:70
本文介绍了Windows Phone列表选择器设置selectedIndex的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到了列表选择器问题.我有一个带有小数"选项的设置页面,您可以在其中切换切换开关",如果打开切换,将启用列表选择器.现在,当您单击列表选择器时,可以选择1到5作为小数位数.例如,如果您在列表选择器中选择数字"3",它将被保存到隔离存储中的值为3的键中;如果您进入MainPage,它将检查隔离存储,并且其中是否包含值"3",它将设置一个文本块以使用3个小数.如果然后我再次进入设置"页面,则应用程序崩溃,并显示消息"SelectedIndex必须始终设置为有效值".应该显示在列表选择器中选择的正确值的地方

I have run into a problem with the listpicker. I have a settings page with a option called "Decimals" where you can toggle a "Toggleswitch" and if you turn the toggle on, the listpicker gets enabled. Now when you click on the listpicker, you can choose from 1 to 5 as the amount of decimals. If you choose for example the number "3" in the listpicker, it will get saved to a key on isolated storage with the value 3, if you go to the MainPage it will check the isolatedstorage and if it contains the value "3", it will set a textblock to use 3 decimals. If I then go to my Settings page again, the app crashed with the message "SelectedIndex must always be set to a valid value." Where it should have showed the correct value that was chosen in the listpicker

这是我使用的代码:

Settings.XAML:

Settings.XAML:

<phone:PhoneApplicationPage
xmlns:local="clr-namespace:Vaterpas"
x:Class="Vaterpas.Settings"
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"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d"
shell:SystemTray.IsVisible="True">

<phone:PhoneApplicationPage.Resources>
    <local:Decimals x:Key="Decimals"/>
    <DataTemplate x:Name="lpkFullItemTemplate">
        <TextBlock FontSize="36" Text="{Binding}" />
    </DataTemplate>
</phone:PhoneApplicationPage.Resources>

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="100"/>
        <RowDefinition Height="120"/>
        <RowDefinition Height="100"/>
        <RowDefinition Height="100"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="285">
        </ColumnDefinition>
        <ColumnDefinition>
        </ColumnDefinition>
    </Grid.ColumnDefinitions>

    <!--TitlePanel contains the name of the application and page title-->
    <StackPanel Grid.ColumnSpan="2" Grid.Row="0" Margin="12,17,0,28">
        <TextBlock Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
        <TextBlock Text="Indstillinger" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
    </StackPanel>

    <Grid Grid.Column="2" Grid.Row="2">
        <toolkit:ToggleSwitch Click="tglDecimals_Click" VerticalAlignment="Top" Height="90" Name="tglDecimals" Content="" Margin="0,10,10,0"></toolkit:ToggleSwitch>
        <Grid DataContext="{StaticResource Decimals}">
            <toolkit:ListPicker x:Name="lpkDecimals" ItemsSource="{Binding decimals}" FullModeHeader="Antal decimaler" FullModeItemTemplate="{StaticResource lpkFullItemTemplate}" ExpansionMode="FullScreenOnly" IsEnabled="False" Margin="130,60,20,0" SelectionChanged="lpkDecimals_SelectionChanged"></toolkit:ListPicker>
        </Grid>
</Grid>

Settings.cs

Settings.cs

命名空间Vaterpas { 公共局部类设置:PhoneApplicationPage {

namespace Vaterpas { public partial class Settings : PhoneApplicationPage {

    protected IsolatedStorageSettings m_Settings = IsolatedStorageSettings.ApplicationSettings;

    protected const string TOGGLE_DECIMALS_SETTING_KEY = "ToggleDecimals";
    protected const string DECIMALS_SETTING_KEY = "Decimals";

    public Settings()
    {
        InitializeComponent();
    }

    protected override void OnNavigatedTo(NavigationEventArgs e)
    {

        if (m_Settings.Contains(TOGGLE_DECIMALS_SETTING_KEY))
        {
            string decimalsToggleValue = (string)m_Settings[TOGGLE_DECIMALS_SETTING_KEY];
            string decimalsValue = (string)m_Settings[DECIMALS_SETTING_KEY];

            if (decimalsToggleValue == "On") 
            {
                lpkDecimals.IsEnabled = true;
                tglDecimals.IsChecked = true;
                tblDecimals.Text = "On";

                if (decimalsValue == "1") 
                {
                    lpkDecimals.SelectedIndex = 0; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
                else if (decimalsValue == "2")
                {
                    lpkDecimals.SelectedIndex = 1; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
                else if (decimalsValue == "3")
                {
                    lpkDecimals.SelectedIndex = 2; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
                else if (decimalsValue == "4")
                {
                    lpkDecimals.SelectedIndex = 3; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
                else if (decimalsValue == "5")
                {
                    lpkDecimals.SelectedIndex = 4; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
            }
            else
            {
                tglDecimals.IsChecked = false;
                tblDecimals.Text = "Off";
                lpkDecimals.IsEnabled = false;
            }
        }
        else
        {
            tglDecimals.IsChecked = false;
            tblDecimals.Text = "Off";
        }
        base.OnNavigatedTo(e);
    }

    private void tglDecimals_Click(object sender, RoutedEventArgs e)
    {
        if (tglDecimals.IsChecked == true)
        {
            lpkDecimals.IsEnabled = true;
            tblDecimals.Text = "On";
            m_Settings[TOGGLE_DECIMALS_SETTING_KEY] = "On";
            lpkDecimals.SelectedIndex = 0;
            m_Settings[DECIMALS_SETTING_KEY] = "1";

        }
        else
        {
            lpkDecimals.IsEnabled = false;
            tblDecimals.Text = "Off";
            m_Settings[TOGGLE_DECIMALS_SETTING_KEY] = "Off";
            m_Settings[DECIMALS_SETTING_KEY] = "0";    
        }
    }

    private void lpkDecimals_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        // Make sure we don't handle the event during initiation.
        if (e.RemovedItems != null && e.RemovedItems.Count > 0)
        {
            if (this.lpkDecimals.SelectedItem != null)
            {
                m_Settings[DECIMALS_SETTING_KEY] = lpkDecimals.SelectedItem.ToString();
            }
        } 

    }
}

public class Decimals
{
    public IEnumerable<string> decimals { get { return "1,2,3,4,5".Split(','); } }


}

}

错误:SelectedIndex必须始终设置为有效值.

ERROR: SelectedIndex must always be set to a valid value.

我真的希望有人可以帮助我解决这个问题.

I really hope there is someone that can help me with this problem.

推荐答案

我认为ItemSource正在花费时间来分配给列表选择器,因为它是在xaml中分配的,并且OnNavigatedTo有时会在InitializeComponent()之前运行;加载xaml的方法,并且在OnNavigatedTo中分配了Selected Index属性,这就是您出错的原因.

I think the the ItemSource is taking time to get assigned to the listpicker as it is assigned in xaml and OnNavigatedTo sometimes runs before InitializeComponent(); method which loads the xaml, and Selected Index property is getting assigned in OnNavigatedTo which is the reason for your error.

从.xaml中删除itemsource的分配,并尝试在所有已编码内容之前在OnNavigatedTo自身中分配它.

Remove the assignment of itemsource from .xaml and Try assigning it in OnNavigatedTo itself before all your coded stuff.

喜欢这个:-

protected override void OnNavigatedTo(NavigationEventArgs e)
    {
        tglDecimals.ItemSource=Your List;
        if (m_Settings.Contains(TOGGLE_DECIMALS_SETTING_KEY))
        {
            string decimalsToggleValue = (string)m_Settings[TOGGLE_DECIMALS_SETTING_KEY];
            string decimalsValue = (string)m_Settings[DECIMALS_SETTING_KEY];

            if (decimalsToggleValue == "On") 
            {
                lpkDecimals.IsEnabled = true;
                tglDecimals.IsChecked = true;
                tblDecimals.Text = "On";

                if (decimalsValue == "1") 
                {
                    lpkDecimals.SelectedIndex = 0; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
                else if (decimalsValue == "2")
                {
                    lpkDecimals.SelectedIndex = 1; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
                else if (decimalsValue == "3")
                {
                    lpkDecimals.SelectedIndex = 2; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
                else if (decimalsValue == "4")
                {
                    lpkDecimals.SelectedIndex = 3; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
                else if (decimalsValue == "5")
                {
                    lpkDecimals.SelectedIndex = 4; // HERE IT CRASHES, WITH THE ERROR (SelectedIndex must always be set to a valid value.") 
                }
            }
            else
            {
                tglDecimals.IsChecked = false;
                tblDecimals.Text = "Off";
                lpkDecimals.IsEnabled = false;
            }
        }
        else
        {
            tglDecimals.IsChecked = false;
            tblDecimals.Text = "Off";
        }
        base.OnNavigatedTo(e);
    }

这会有所帮助

这篇关于Windows Phone列表选择器设置selectedIndex的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆