The developing was very easy but usefully: An image inside a button with an disabeling possibility.
In WPF it is possible to create a button like this
<Buton>
<StackPanel Orientation="Horizontal">
<Image Height="16" Width="16" Margin="0,0,2,0" Source="..\Resources\Okay.png" />
<TextBlock Text="Okay" VerticalAlignment="Center" />
</StackPanel>
</Buton>
But this have two problems.
First, this have to be done on every button which should take an image, or for every different button an style has to create.
The second problem is much problematic, what about the disabeling? An Image does not gray out automatically after set IsEnabled to false.
Both now is possible with my new ImageButton.
To have the same button like I show now, simply write
<Tulipa:ImageButton ImageSource="..\Resources\Okay.png" Content="Okay" />
The Image automatically gray out after set IsEnabled to false, and the button has some properties for arrange and modify the image, just take a look into the documentation.
The control is added in Tulipa version 4.0.7.0.
David W.