Is there a way to not add measure on the left corner of the grid. For us only displaying measure in the datasecltors in enough. Is there a way to achieve this..? We don't want users to drop it on the top left corner..?
Hi
The easiest way is to use code below
pivotGrid.LayoutLoaded += (s, args) => { pivotGrid.MeasuresDropControl.Visibility = Visibility.Collapsed; };
This will hide the measure drop area. If you want something more complex you should change the PivotGrid control template.
RegardsTodor
OK. That works and It is hidden. MeasureDropControl now looks like a white rectangle. How do I change this to my Windows theme I am l already using...?