OK, I want to create a control that is like a Stackpanel
with TextBlock
on the left, something like:
The TextBlock
need to be editable. So, the question is from whom I need to inherit to make that since cannot from Stackpanel
?
OK, I want to create a control that is like a Stackpanel
with TextBlock
on the left, something like:
The TextBlock
need to be editable. So, the question is from whom I need to inherit to make that since cannot from Stackpanel
?
That is basically a
HeaderedItemsControl
with a customTemplate
.The template could be a
Grid
with two columns, one containing a rotatedContentPresenter
which is bound to the header properties, on the right you would have anItemsPresenter
for the items.e.g.