Visual Studio 2017 Community (以下VS)
Windows 7 Pro (32bit)
RelativeSource 関連を学習中。
参考1: http://www.cnblogs.com/xieyong_198510/p/3437217.html
2.PreviousData 模式:
上記のコードはそのままでは実行に失敗した。
名前空間プレフィックス "Collection"が定義されていません。
上記のエラーに関しては詳細はスキップ。
以下をさらに参考にした。
参考2: https://stackoverflow.com/questions/1508035/how-to-populate-a-liststring-in-xaml
参考3: https://stackoverflow.com/questions/4739357/is-it-possible-to-make-an-liststring-a-static-resource-in-xaml
code
以下を実装してみた。
MainWindow.xaml
<Window x:Class="_170528_t1430_binding_previousData.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:_170528_t1430_binding_previousData"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<x:Array x:Key="listItems" Type="sys:String"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<sys:String>One</sys:String>
<sys:String>Two</sys:String>
<sys:String>Three</sys:String>
</x:Array>
</Window.Resources>
<Grid>
<ListBox ItemsSource="{StaticResource ResourceKey=listItems}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding}"/>
<TextBlock Text="{Binding RelativeSource={RelativeSource PreviousData}}" Margin="15 0 0 0"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</Window>

どういう使い方をするかは今は知らなくて良いとしておく。
エラー > 名前空間プレフィックス "Collection"が定義されていません。
(追記 2017/06/04)
名前空間プレフィックス "Collection"が定義されていません。
について、コードを見直すとリンク先では以下の行があった。
xmlns:collection="clr-namespace:System.Collections;assembly=mscorlib"
この定義がなかったためのエラーなのかもしれない。