MarkupProperty.Items Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets the items that make up the value of this property.
public:
abstract property System::Collections::Generic::IEnumerable<System::Windows::Markup::Primitives::MarkupObject ^> ^ Items { System::Collections::Generic::IEnumerable<System::Windows::Markup::Primitives::MarkupObject ^> ^ get(); };
public abstract System.Collections.Generic.IEnumerable<System.Windows.Markup.Primitives.MarkupObject> Items { get; }
member this.Items : seq<System.Windows.Markup.Primitives.MarkupObject>
Public MustOverride ReadOnly Property Items As IEnumerable(Of MarkupObject)
Property Value
The items that make up the value of this property.
Remarks
If the property is not an enumeration, only one item will be returned.
If the property is an enumeration, or enumerable, all the items will be returned.
At least one item is always returned, because MarkupObject will not create a MarkupProperty for properties with no items.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET