「背景色」設定用の Button コントロールを取得または設定します。
[Visual Basic]
Public Property ButtonBackColor As System.Windows.Controls.Button
[C#]
public System.Windows.Controls.Button ButtonBackColor {get; set;}

プロパティ値

System.Windows.Controls.Button 型の値

解説

「背景色」設定用の Button コントロールを示します。
ToolBarStandard が持つ任意のボタンの詳細な設定やイベント取得が可能です。

(1) 「塗りつぶし」ボタンのイメージを変更する。

[Visual Basic.NET]
  Dim image As Image = new Image()
  image.Source = new BitmapImage(new Uri("pack://application:,,,/image/image.png", UriKind.Absolute))
  ToolBarStandard1.ButtonFill.Image.Content = image

[Visual C#.NET]
  Image image = new Image();
  image.Source = new BitmapImage(new Uri("pack://application:,,,/image/image.png", UriKind.Absolute));
  toolBarStandard1.ButtonFill.Image.Content = image;
(2) 「ペンの太さを太くする」ボタンのクリックイベントを発生させ、取得する。
[Visual Basic.NET]
  ※FormLoad イベント内などで、ButtonPenWidthUp のクリックイベントのデリゲートを設定しておく
   AddHandler ToolBarStandard1.ButtonPenWidthUp.Click, AddressOf Me.ButtonPenWidthUp_Click

  'イベントハンドラデリゲート
  Private Sub ButtonPenWidthUp_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
    'イベント発生で処理する内容をここに記載
  End Sub

[Visual C#.NET]
  ※FormLoad イベント内などで、ButtonPenWidthUp のクリックイベントのデリゲートを設定しておく
  toolBarStandard1.ButtonPenWidthUp.Click += new MouseEventHandler(ButtonPenWidthUp_Click);

  //イベントハンドラデリゲート
  private void ButtonPenWidthUp_Click(object sender, RoutedEventArgs e)
  {
    //イベント発生で処理する内容をここに記載
  }

参照

ToolBarStandard メンバ | Newtone.ImageKit.WPF.ToolBarStandard