|
<Grid x:Name="ViewGrid">
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="44" Width="100" />
<ColumnDefinition Width="1" />
<ColumnDefinition MinWidth="44" Width="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ResizeColumn2, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
</Grid.ColumnDefinitions>
<Border x:Name="Border" Background="{TemplateBinding Background}" SnapsToDevicePixels="True" >
<Grid Margin="{Binding PropertyLevel, Mode=OneWay, Converter={StaticResource LevelConverter}}" >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto" x:Name="expanderColumn"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<ContentPresenter Margin="{TemplateBinding Padding}" Grid.Column="1" x:Name="PART_Content" ContentTemplate="{TemplateBinding EditorTemplate}" Content="{TemplateBinding HeaderedItemsControl.Header}" />
</Grid>
</Border>
<GridSplitter IsTabStop="False" Width="1" Background="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" HorizontalAlignment="Stretch" Grid.Column="1" />
<ContentPresenter Grid.Column="2" x:Name="PART_Content1" ContentTemplate="{StaticResource PropertyValueTemplate}" Content="{TemplateBinding HeaderedItemsControl.Header}" />
</Grid>
|
|
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Syncfusion.PropertyGrid.WPF;component/Themes/BlendStyle.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
|
Am I the only one getting errors in this example?
Error The resource "ResourceWrapperKey" could not be resolved.
for
ToolTip="{Binding Source={StaticResource ResourceWrapperKey}, Path=PropertyGridCategorizedToolTip}" C:\Projects\transmitter\RA3.0\dotNET\Sandbox\WpfApp6\WpfApp6\MainWindow.xaml 53 82
ToolTip="{Binding Source={StaticResource ResourceWrapperKey}, Path=PropertyGridAlphabeticalToolTip}" C:\Projects\transmitter\RA3.0\dotNET\Sandbox\WpfApp6\WpfApp6\MainWindow.xaml 65 82
WatermarkText="{Binding Source={StaticResource ResourceWrapperKey},Path=Search}" WatermarkTextIsVisible="True" Cursor="IBeam" /> C:\Projects\transmitter\RA3.0\dotNET\Sandbox\WpfApp6\WpfApp6\MainWindow.xaml 71 82
<syncfusion:ClearButton x:Name="PART_Clear" IsTabStop="False" ToolTip="{Binding Source={StaticResource ResourceWrapperKey},Path=Clear}" Background="Transparent" BorderBrush="Transparent" BorderThickness="1" Width="20" Height="20" Visibility="Collapsed" HorizontalAlignment="Right" Margin="1 0" > C:\Projects\transmitter\RA3.0\dotNET\Sandbox\WpfApp6\WpfApp6\MainWindow.xaml 72 148
Searching the solution for "ResourceWrapperKey" and the only results are the 4 error locations.