Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions DefaultStyles/Dashboards/generic.shared.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="http://schemas.infragistics.com/xaml">

<Style TargetType="{x:Type local:XamDashboardTile}">

<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:XamDashboardTile}">
<ContentControl x:Name="PART_CONTENT">

</ContentControl>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

</ResourceDictionary>
19 changes: 19 additions & 0 deletions DefaultStyles/Dashboards/generic.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="http://schemas.infragistics.com/xaml">

<Style TargetType="{x:Type local:XamDashboardTile}">

<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:XamDashboardTile}">
<ContentControl x:Name="PART_CONTENT">

</ContentControl>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

</ResourceDictionary>
4 changes: 2 additions & 2 deletions DefaultStyles/DataPresenter/DataPresenterGeneric.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@
IsInFieldChooser="{TemplateBinding IsSourceFromFieldChooser}"
IsInGroupByArea="{TemplateBinding IsSourceFromGroupByArea}"
Opacity=".5"/>
<!--JJD 1/06/16 - v23.2 Field Grouping -->
<!--JJD 1/06/16 - Field Grouping -->
<igDP:FieldGroupLabelPresenter
x:Name="fieldGroupLabelPresenter"
FieldGroup="{TemplateBinding FieldGroup}"
Expand All @@ -519,7 +519,7 @@
<Setter TargetName="labelPresenter" Property="Visibility" Value="Collapsed"/>
<Setter TargetName="cellPresenter" Property="Visibility" Value="Visible"/>
</Trigger>
<!--JJD 1/06/16 - v23.2 Field Grouping -->
<!--JJD 1/06/16 - Field Grouping -->
<Trigger Property="IsFieldGroup" Value="true">
<Setter TargetName="fieldGroupLabelPresenter" Property="Visibility" Value="Visible"/>
<Setter TargetName="labelPresenter" Property="Visibility" Value="Collapsed"/>
Expand Down
4 changes: 2 additions & 2 deletions DefaultStyles/DataPresenter/DataPresenterRoyale.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
IsInFieldChooser="{TemplateBinding IsSourceFromFieldChooser}"
IsInGroupByArea="{TemplateBinding IsSourceFromGroupByArea}"
Opacity=".5"/>
<!--JJD 1/06/16 - v23.2 Field Grouping -->
<!--JJD 1/06/16 - Field Grouping -->
<igDP:FieldGroupLabelPresenter
x:Name="fieldGroupLabelPresenter"
FieldGroup="{TemplateBinding FieldGroup}"
Expand All @@ -53,7 +53,7 @@
<Setter TargetName="labelPresenter" Property="Visibility" Value="Collapsed"/>
<Setter TargetName="cellPresenter" Property="Visibility" Value="Visible"/>
</Trigger>
<!--JJD 1/06/16 - v23.2 Field Grouping -->
<!--JJD 1/06/16 - Field Grouping -->
<Trigger Property="IsFieldGroup" Value="true">
<Setter TargetName="fieldGroupLabelPresenter" Property="Visibility" Value="Visible"/>
<Setter TargetName="labelPresenter" Property="Visibility" Value="Collapsed"/>
Expand Down
15 changes: 15 additions & 0 deletions DefaultStyles/DataVisualization/Classic.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="http://schemas.infragistics.com/xaml"
xmlns:layouts="http://schemas.infragistics.com/xaml"
xmlns:ig="http://schemas.infragistics.com/xaml"
xmlns:igWindows="http://infragistics.com/Windows"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand Down Expand Up @@ -1556,4 +1557,18 @@
</Setter.Value>
</Setter>
</Style>


<Style TargetType="{x:Type layouts:XamPopup}">

<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type layouts:XamPopup}">
<ContentControl x:Name="PART_CONTENT">

</ContentControl>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
14 changes: 14 additions & 0 deletions DefaultStyles/DataVisualization/generic.shared.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
xmlns:System="clr-namespace:System;assembly=mscorlib"
xmlns:igPrimitives="http://schemas.infragistics.com/xaml/primitives"
xmlns:local="http://schemas.infragistics.com/xaml"
xmlns:layouts="http://schemas.infragistics.com/xaml"
xmlns:ig="http://schemas.infragistics.com/xaml"
xmlns:maps="http://schemas.infragistics.com/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand Down Expand Up @@ -1267,4 +1268,17 @@
</Setter>
</Style>
<Style BasedOn="{StaticResource XamMultiScaleImageStyle}" TargetType="maps:XamMultiScaleImage" />

<Style TargetType="{x:Type layouts:XamPopup}">

<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type layouts:XamPopup}">
<ContentControl x:Name="PART_CONTENT">

</ContentControl>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
Loading