4

我是 WP8 和 MVVM 的新手。我创建了 wp8 应用程序,该应用程序在用户登录后请求各种数据。我只是无法让我的数据透视表头动态创建,我不知道是不是因为我在绑定中做某事, INotifyPropertyChanged,两者或其他!

这是我到目前为止所做的:

我在 App.cs 中定义了一个全局 MainViewModel ,它将存储登录时返回的所有数据。

一旦登录成功并且数据已加载到 MainViewModel 中,我会将其重定向到包含 Pivot Control 的测试页面,并且我正在尝试动态创建 Pivot Items。

这是我的测试页面的 xaml,即 MainPivotPage.xaml,我的 MainPivotViewModel 已初始化,因为它被定义为本地资源并设置为 Pivot 控件的数据上下文,我不知道我是否这样做正确,但我'将“名称”属性分配给 PivotItem 的 Header,它们是存储在我的可观察集合 Pivots 中的对象。属性名称是我在名为 Pivot 的类中拥有的 2 个属性之一,该类包含 PivotId 和 Name。

<phone:PhoneApplicationPage
    x:Class="TestApp.Views.MainPivotPage"
    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:viewModel="clr-namespace:TestApp.ViewModels"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait"  Orientation="Portrait"
    shell:SystemTray.IsVisible="True" Loaded="PhoneApplicationPage_Loaded">
    <!--LayoutRoot is the root grid where all page content is placed-->

    <phone:PhoneApplicationPage.Resources>
        <viewModel:MainPivotViewModel x:Key="MainPivotViewModel" />
    </phone:PhoneApplicationPage.Resources>

    <Grid x:Name="LayoutRoot" Background="Transparent">
        <!--Pivot Control-->
        <phone:Pivot Title="My Search Options" x:Name="MainPivots" ItemsSource="{Binding Pivots}" DataContext="{StaticResource MainPivotViewModel}">
            <phone:PivotItem Header="{Binding Name}">
                <!--<Grid/>-->
            </phone:PivotItem>
        </phone:Pivot>
    </Grid>
</phone:PhoneApplicationPage>

创建 MainPivotViewModel 时,我将 Pivots 可观察集合设置为存储在 MainViewModel 中的相同可观察集合,该集合包含登录时返回的所有数据。如您所见,我将其分配给属性而不是内部变量,以确保它将触发 INotifyPropertyChanged (嗯...,我认为)

public class MainPivotViewModel : BaseViewModel
{
    private ObservableCollection<Pivot> _pivots = null;

    public MainPivotViewModel()
    {
        Pivots = App.MainViewModel.Pivots;            
    }

    public ObservableCollection<Pivot> Pivots
    {
        get
        {
            return _pivots;
        }

        set
        {
            if (_pivots != value) this.SetProperty(ref this._pivots, value);
        }
    }
}

我使用包含在我的基类中的 SetProperty 函数,用于生成 INotifyPropertyChanged 事件,并允许我在每次需要 INotifyPropertyChanged 事件时都设置属性名称。

这是我的 BaseView 的代码:

public class BaseViewModel : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    protected bool SetProperty<T>(ref T storage, T value, [CallerMemberName] String propertyName = null)
    {
        if (object.Equals(storage, value)) return false;

        storage = value;
        this.OnPropertyChanged(propertyName);
        return true;
    }

    protected void OnPropertyChanged([CallerMemberName] string propertyName = null)
    {
        var eventHandler = this.PropertyChanged;
        if (eventHandler != null)
        {
            eventHandler(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

我的 Pivot 类如下所示:

public class Pivot: BaseModel
{
    private int _pivotId;
    private string _name = string.Empty;

    public Pivot()
    {

    }

    public Pivot(int pivotId, string name)
    {
        PivotId = pivodId;
        Name = name;
    }

    public int PivotId
    {
        get { return _pivotId; }
        set { if (_pivotId != value) this.SetProperty(ref this._pivotId, value); }
    }

    public string Name
    {
        get { return _name; }
        set { if (_name != value) this.SetProperty(ref this._name, value); }
    }
}

您可能会注意到这是从 BaseModel 继承的。这与 BaseViewModel 中的代码完全相同,但我想将两者分开。我不确定这在我的 Pivot 课程中是否需要,但我正在尝试不同的场景并暂时保留它。

我不知道我做错了什么,但无论我尝试什么,我都无法将“名称”属性显示为标题的文本。我很确定 MainPivotViewModel 在被分配为本地资源时已被初始化,因为我正确地调用了我的构造函数,然后它正在初始化我的可观察集合,但仅此而已。

但它绝对没有显示!

我注意到的另一件事是,当我在 BaseViewModel 类的 OnPropertyChanged 方法的“Set”中放置断点时,eventHandler 始终为空,无论我认为不应该是什么,但我看不到我的做错了。

我有很多关于 stackoverflow 和其他文章的文章,但我只是看不出我做错了什么?有人有什么想法吗?

谢谢。

4

3 回答 3

3

问题解决了!!!

我的代码一直都是正确的,但 XAML 不是!

我猜是陡峭而痛苦的学习曲线!无论如何,我在找到一篇关于 stackoverflow 的文章后找到了解决方案,该文章基本上向我展示了我编写 xaml 的方式不合适。

老实说,我不明白为什么这不能按照定义的方式工作,但简而言之,我必须使用 HeaderTemplate 和 ItemTemplate 才能在绑定到 ViewModel 时正确显示数据!

这是帖子:Databound pivot is not loading the first PivotItem in Windows Phone 8

于 2013-03-28T00:54:01.523 回答
2

不,你的回答是错误的,你的代码是错误的。

错误一:

    set
    {
        if (_pivots != value) this.SetProperty(ref this._pivots, value);
    }

在这里,如果您更改属性或绑定将丢失的变量,这并不重要。

错误 2:从 ItemsControl 派生的所有 UIElement 都忽略 INotifyPropertyChanged,因为它不会仅更新 DataContext 的 ItemsSource。

工作示例

    public ObservableCollection<string> LstLog { get; set; }
    private ObservableCollection<string> _lstContent = new ObservableCollection<string>();
    public ObservableCollection<string> LstContent
    {
        get
        {
            LstLog.Add("get");
            return _lstContent;
        }
        set
        {
            LstLog.Add("set");
            _lstContent = value;
        }
    }
    public MainWindow()
    {
        LstLog = new ObservableCollection<string>();

        InitializeComponent();
        this.DataContext = this;
    }

    private void Add_Click(object sender, RoutedEventArgs e)
    {
        LstContent.Add("Value added");
    }

    private void New_Click(object sender, RoutedEventArgs e)
    {
        _lstContent = new ObservableCollection<string>();
    }

    private void NewBind_Click(object sender, RoutedEventArgs e)
    {
        _lstContent = new ObservableCollection<string>();
        listObj.ItemsSource = _lstContent;
    }

    private void NewProp_Click(object sender, RoutedEventArgs e)
    {
        LstContent = new ObservableCollection<string>();
    }

    private void NewPropBind_Click(object sender, RoutedEventArgs e)
    {
        LstContent = new ObservableCollection<string>();
        listObj.ItemsSource = LstContent;
    }

和用户界面

<Grid DataContext="{Binding}">
    <Grid.RowDefinitions>
        <RowDefinition />
        <RowDefinition />
        <RowDefinition Height="25" />
    </Grid.RowDefinitions>

    <ItemsControl Grid.Row="0" Name="logObj" ItemsSource="{Binding Path=LstLog}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding}"/>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
    <ItemsControl Grid.Row="1" Name="listObj" ItemsSource="{Binding Path=LstContent}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding}"/>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
    <StackPanel Grid.Row="2" Orientation="Horizontal">
        <Button Name="Add" Content="Add" Click="Add_Click"/>
        <Button Name="New" Content="New" Click="New_Click"/>
        <Button Name="NewBind" Content="New Bind" Click="NewBind_Click"/>
        <Button Name="NewProp" Content="New Prop" Click="NewProp_Click"/>
        <Button Name="NewPropBind" Content="New Prop Bind" Click="NewPropBind_Click"/>
    </StackPanel>
</Grid>

只是为了LstLog查看事件列表,如果单击add它将更新两个列表,但如果单击NewNew Prop绑定将丢失,直到您像在New Bind或中一样更新它New Prop Bind

希望这将澄清 XAML 列表事件反复出现的问题。

PS:这是在 WPF 中,但在 WP8 和 Windows 商店应用程序中的工作方式相同。

于 2013-12-10T12:24:43.050 回答
1

这一切对我来说都很好,所以我认为 App.MainViewModel.Pivots 在调用构造函数时为空或为空(因此 Pivot 控件为空),并且您最终在 MainViewModel 中创建了一个新的 Pivots 实例在 MainPivotViewModel 实例化之后。

您是否尝试在 MainPivotViewModel.Pivots 的 getter 中设置断点以确认有一些项目?

于 2013-03-27T20:51:56.687 回答