Visual Studio/WPF > XAML > 컬렉션 구문
3047 단어 myVisualStudioStudyXaml#migrated
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2
@ WPF 4.5 입문 by 오타 카즈키
No.1313/9985
컬렉션 구문의 예가 게재되어 있다.
특히 컬렉션의 속성을 설정할 때 컬렉션 형식을 명확하게 지정하지 않고 컬렉션의 여러 요소를 지정합니다.
같은 형태는 아니지만, ComboBox를 사용한 예를 생각해 보았다.
이하를 컬렉션 구문이라고 하는 것은 올바른가는 불명.
XAML
<Window x:Class="_170423_t1630_combobox.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:_170423_t1630_combobox"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<ComboBox HorizontalAlignment="Left"
Margin="37,29,0,0"
VerticalAlignment="Top" Width="120">
<ComboBox.Items>
<Label Content="AAA"/>
<Label Content="BBB"/>
<Label Content="CCC"/>
</ComboBox.Items>
</ComboBox>
</Grid>
</Window>
관련이 있는 링크
다음은 간단하고 좋습니다.
ht tp // // 소조. jp/우우 b-아 p/테 ch/xml/ぁml/
특정의 프롭퍼티가 콜렉션형을 받을 때, 그 프롭퍼티의 아이 요소로서 선언하는 것으로, 그 콜렉션의 일부가 됩니다.
Reference
이 문제에 관하여(Visual Studio/WPF > XAML > 컬렉션 구문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/677b95e0e79858d488f8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)