Скажем, у вас есть кнопка, подобная этой:
<Button x:Name="btnOne" Content="How to grow big and strong?">
<Button.ToolTip>
<ToolTip>
Eat your veggies
</ToolTip>
</Button.ToolTip>
</Button>
Вы можете изменить это так:
var tip = ToolTipService.GetToolTip(this.btnOne) as ToolTip;
tip.Background = new SolidColorBrush(Colors.Magenta);