or

<telerikQuickStart:QuickStart.ExampleHeader><Border telerikQuickStart:ThemeAwareBackgroundBehavior.IsEnabled="True" Grid.RowSpan="3" />protected override void InitGroups(){ DefaultGroupDescriptors = new GroupDescriptorCollection(); GroupDescriptor Descriptor_STKNR = new GroupDescriptor(); Descriptor_STKNR.Member = "Field1";
CountFunction cound = new CountFunction(); Descriptor_STKNR.AggregateFunctions.Add(cound); DefaultGroupDescriptors.Add(Descriptor_STKNR); GroupDescriptor Descriptor_MEAUF = new GroupDescriptor(); Descriptor_MEAUF.Member ="Field2";
SumFunction sum = new SumFunction(); Descriptor_MEAUF.AggregateFunctions.Add(sum);
DefaultGroupDescriptors.Add(Descriptor_MEAUF); }
// execut at the binding:
foreach (GroupDescriptor Elem in DefaultGroupDescriptors)
{
Grid.GroupDescriptors.Add(Elem);
AddAggregateFunctions(Grid, Elem);
} private static void AddAggregateFunctions(RadGridView Grid, GroupDescriptor Elem){ if (Elem.AggregateFunctions != null) { foreach (AggregateFunction Function in Elem.AggregateFunctions) { Grid.Columns[Elem.Member].AggregateFunctions.Add(Function); } }} Grid.GroupDescriptors.Add(Elem);
AddAggregateFunctions(Grid, Elem); CountFunction cound = new CountFunction(); Descriptor_STKNR.AggregateFunctions.Add(cound); DefaultGroupDescriptors.Add(Descriptor_STKNR);
... DefaultGroupDescriptors.Add(Descriptor_MEAUF);foreach (GroupDescriptor Elem in newValue){ AddAggregateFunctions(ActGrid, Elem); ActGrid.GroupDescriptors.Add(Elem);}<
Style x:Key="Win" TargetType="telerikDockingControls:RadPane">
<Setter Property="AllowsTransparency" Value="False"/>
</Style>
but I get the error message -
property was not found in RadePane.
could you tell me how to disable AllowsTransparency please?
public class SiteOrderHeader{ public int SiteOrderId { get; set; } public List<MachineSpeed> MachineSpeeds { get; set; }}public class MachineSpeed{ public string Type { get; set; } public int Speed { get; set; }}SiteOrderHeader siteOrderHeader = new SiteOrderHeader();siteOrderHeader.SiteOrderId = 1;siteOrderHeader.MachineSpeeds.Add(new MachineSpeed() { Type = "Type1", Speed = 10000 });siteOrderHeader.MachineSpeeds.Add(new MachineSpeed() { Type = "Type2", Speed = 6000 });siteOrderHeader.MachineSpeeds.Add(new MachineSpeed() { Type = "Type3", Speed = 12000 });| SiteOrderId | Type1 | Type2 | Type3 |
| 1 | 10000 | 6000 | 12000 |