0

WP 7 で奇妙なバインディングの問題があります。コードは WP8 で問題なく動作しますが、WP7 バインディングで同じ (次の) コードを実行すると、TextBlock.Text が "" になります。コードは次のとおりです (バインドは 2 番目の TextBlock の Text プロパティで設定されます)。

    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,35">
        <ListBox x:Name="MainListBox" Margin="0,0,-12,0" SelectionChanged="MainListBox_SelectionChanged">

            <StackPanel x:Name="MeasurementUnitPropertyPanel" toolkit:TiltEffect.IsTiltEnabled="True" Margin="12,0,0,0" Orientation="Horizontal" MinHeight="100">
                <TextBlock x:Name="MeasurementUnitPropertyLabel" Width="235" Margin="0,30,0,0" HorizontalAlignment="Left" Text="{Binding Path=AppResources.MeasurementUnitPropertyLabel, Source={StaticResource LocalizedStrings}}" Style="{StaticResource PhoneTextLargeStyle}" FontSize="28">
                    <TextBlock.Foreground>
                        <SolidColorBrush Color="Black"/>
                    </TextBlock.Foreground>
                </TextBlock>
                <TextBlock x:Name="MeasurementUnitPropertyValue" Width="185" Margin="0,30,0,0" TextAlignment="Right" Text="{Binding MeasurementUnit}" Style="{StaticResource PhoneTextLargeStyle}" FontSize="28">
                    <TextBlock.Foreground>
                        <SolidColorBrush Color="{StaticResource DarkGrayThemeColor}"/>
                    </TextBlock.Foreground>
                </TextBlock>
            </StackPanel>

...

次に、OnNavigatedTo メソッドで DataContext を設定します (またはコンストラクターで、問題は同じです)...

// When page is navigated to set data context to selected item in list
    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
        viewModel = new ClimateSettingsViewModel();
        DataContext = viewModel;
        //MeasurementUnitPropertyValue.DataContext = viewModel.MeasurementUnit; //This does not work too...

        //Other stuff...
    }

(の一部) ClimateSettingsViewModel クラス:

class ClimateSettingsViewModel : INotifyPropertyChanged
{
    /// <summary>
    /// Sample ViewModel property; this property is used in the view to display its value using a Binding.
    /// </summary>
    /// <returns></returns>
    public String MeasurementUnit
    {
        get
        {
            return ClimateSettings.MeasurementUnitValues[App.UserData.SelectedConfiguration.ClimateSettings.MeasurementUnit];
        }
        /*
        set
        {
            if (value != ClimateSettings.MeasurementUnitValues[App.UserData.SelectedConfiguration.ClimateSettings.MeasurementUnit])
            {
                App.UserData.SelectedConfiguration.ClimateSettings.MeasurementUnit = value;
                NotifyPropertyChanged("MeasurementUnit");
            }
        }*/
    }


    public event PropertyChangedEventHandler PropertyChanged;
    private void NotifyPropertyChanged(String propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (null != handler)
        {
            handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

アプリのプラットフォームは WP OS 7.1 です。前もって感謝します!

4

1 に答える 1

0

さらに調査した結果、Windows Phone 7 と Windows Phone 8 ではリフレクションの実装が異なっています。

Windows Phone 7 では、プライベートまたは内部機能にアクセスしようとするとエラーが発生しますMethodAccessExceptionが、Windows Phone 8 では問題なく動作します。

デバッグ時にすべての例外をオンにするだけで、このエラーが急増します。

于 2013-10-01T07:52:36.313 に答える