BulletDecorator.Bullet プロパティ

定義

BulletDecorator で行頭文字として使用するオブジェクトを取得または設定します。

public:
 property System::Windows::UIElement ^ Bullet { System::Windows::UIElement ^ get(); void set(System::Windows::UIElement ^ value); };
public System.Windows.UIElement Bullet { get; set; }
member this.Bullet : System.Windows.UIElement with get, set
Public Property Bullet As UIElement

プロパティ値

行頭文字として使用する UIElement。 既定値は、null です。

次の例では、 プロパティを設定する方法を Bullet 示します。

BulletDecorator bp = new BulletDecorator();
Image i = new Image();
BitmapImage bi= new BitmapImage(); 
bi.UriSource = new Uri(@"pack://application:,,/images/icon.jpg");
i.Source = bi;
i.Width = 10;
bp.Bullet = i;
TextBlock tb = new TextBlock();
tb.Text = "My Expander";
tb.Margin = new Thickness(20,0,0,0);     
bp.Child = tb;
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>

注釈

プロパティは Bullet コントロールの BulletDecorator コンテンツ プロパティであり、オブジェクトの UIElement 箇条書きとして表示する を Child 定義します。

プロパティを にUIElement設定Bulletすることによって定義される行頭文字は、コントロール内の最初のBulletDecoratorビジュアル要素です。 1 つの Child 要素は、2 番目のビジュアル要素です。

XAML プロパティ要素の使用

<object>  
  <object.Bullet>  
    <UIElement .../>  
  </object.Bullet>  
</object>  

適用対象

こちらもご覧ください