I have this XAML:
<dxb:BarStaticItem>
<TextBlock Text="{Binding MyStatusBarText}"></TextBlock>
</dxb:BarStaticItem>
However, I'm getting this error:
Cannot add content to an object of type BarStaticItem
How do I fix this, so I can do things like change the color and style of the rendered item?
This XAML will work fine, but its limiting (it won't allow you to set the color of the text displayed, as requested):
This particular control does allow us to set the
ContentTemplate
. We can use this to style the content:First, we define a
DataTemplate
inWindow.Resources
. This is what ourContentTemplate
will point at:As the
DataContext
of aDataTemplate
is different to the rest of the XAML, if we omit the XAMLRelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}
then the binding will not work properly. Other than that, all we are doing is defining a template which can be used to render the contents of the control.Then, we point our control at this
DataTemplate
:Now that we have defined a custom data template, we can do anything we want. For example, we could add a
Converter
which colored the text red if the status bar contained the textError
(something that was impossible, otherwise).This answer also illustrates how it is possible to use a
DataTemplate
to display custom content for most controls.Update
Rather than defining the
DataTemplate
in the resources for the Window, defined it as a resource forBarStaticItem
. This keeps related items together in the XAML.This particular XAML means that the status bar text automatically goes red if the text contains the string
Error
, and the status bar text is automatically prefixed with the time. Let me know if you want me to post the C# code for the converters.