0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Visual Studio / WPF > Binding > RelativeSource PreviousData の実装例

Last updated at Posted at 2017-05-28
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>
2017-05-28_15h29_46.png (15.0 kB)

どういう使い方をするかは今は知らなくて良いとしておく。

エラー > 名前空間プレフィックス "Collection"が定義されていません。

(追記 2017/06/04)

名前空間プレフィックス "Collection"が定義されていません。

について、コードを見直すとリンク先では以下の行があった。

xmlns:collection="clr-namespace:System.Collections;assembly=mscorlib"

この定義がなかったためのエラーなのかもしれない。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?