BulletDecorator.Bullet Property
Gets or sets the object to use as the bullet in a BulletDecorator.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
'Declaration Public Property Bullet As UIElement 'Usage Dim instance As BulletDecorator Dim value As UIElement value = instance.Bullet instance.Bullet = value
<object> <object.Bullet> <UIElement .../> </object.Bullet> </object>
Property Value
Type: System.Windows.UIElementThe UIElement to use as the bullet. The default is Nothing.
Content Model: The Bullet property is a content property of the BulletDecorator control and defines the UIElement to display as a bullet for the Child object.
The bullet that is defined by setting the Bullet property to a UIElement is the first visual element in a BulletDecorator control. The single Child element is the second visual element.
The following examples show how to set the Bullet property.
Dim bp As BulletDecorator = New BulletDecorator() Dim i As Image = New Image() Dim bi As BitmapImage = New BitmapImage() bi.UriSource = New Uri("pack://application:,,./images/icon.jpg") i.Source = bi i.Width = 10 bp.Bullet = i Dim tb As TextBlock = New TextBlock() tb.Text = "My Expander" tb.Margin = New Thickness(20, 0, 0, 0) bp.Child = tb
<BulletDecorator> <BulletDecorator.Bullet> <Image Width="10" Source="images\icon.jpg"/> </BulletDecorator.Bullet> <TextBlock Margin="20,0,0,0">My Expander</TextBlock> </BulletDecorator>
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.