Visual Studio/WPF > Binding > RelativeSource PreviousData 구현 예제
4842 단어 myVisualStudioStudyWPF#migrated
Visual Studio 2017 Community (以下VS)
Windows 7 Pro (32bit)
RelativeSource 관련 학습 중.
참고 1 : h tp // w w. cbbgs. 이 m/에욘 g_198510/p/3437217. HTML
2.PreviousData 모델:
위의 코드는 그대로 실행에 실패했습니다.
네임스페이스 접두사 "Collection"이 정의되지 않았습니다.
상기의 에러에 관해서는 자세한 것은 스킵.
이하를 더 참고로 하였다.
참고 2 : h tps : // s t c ゔ ぇ rf ぉ w. 코 m / 쿠에 s 치온 s / 1508035 / HO W-TO-POPTE-A-A Stst Rin-G-IN-ML
참고 3 : h tps : // s t c ゔ ぇ rf ぉ w. 코 m / 쿠에 s 치온 s / 4739357 / 이 s-i t-poshi b ぇ - 마케 - an - stst ring - e-s
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"
이 정의가 없었기 때문에 오류일지도 모른다.
Reference
이 문제에 관하여(Visual Studio/WPF > Binding > RelativeSource PreviousData 구현 예제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/817acccda963757c6c58텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)