I found link https://www.devexpress.com/Support/Center/Question/Details/Q535803, but I have a feeling this could be much simpler for my situation. I have a property:
public string Title
{
get { return _title; }
set { SetPropertyValue("Title", ref _title , value); }
}
And some bool:
[VisibleInListView(false)]
[VisibleInDetailView(false)]
public bool Switch
{
get { return _switch ; }
set { SetPropertyValue("Switch", ref _switch, value); }
}
Now if switch is true I like to present a different caption for Title. I tried using an appearance rule but this does not seem to support Caption changes.