我正在尝试自定义扩展WPF工具包的RichTextBoxFormatBar
工具,因为我想要取消一些开箱即用的功能。
我创建了自定义控件并将原始工具源代码复制到Themes\Generic.xaml
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Xceed.Wpf.Toolkit;assembly=Xceed.Wpf.Toolkit"
xmlns:conv="clr-namespace:Xceed.Wpf.Toolkit.Core.Converters;assembly=Xceed.Wpf.Toolkit"
xmlns:MyNamespace="clr-namespace:IsesTextEditor">
<conv:ColorToSolidColorBrushConverter x:Key="ColorToSolidColorBrushConverter" />
<ControlTemplate TargetType="{x:Type MyNamespace:IsesFormatBar}" x:Key="IsesFormatTemplate">
<Border Background="Transparent"
Cursor="Hand"
ToolTip="Click to Drag">
<StackPanel VerticalAlignment="Center"
Width="75">
<Line SnapsToDevicePixels="True"
Stretch="Fill"
StrokeDashArray="1,2"
StrokeThickness="1"
X1="0"
X2="1"
Margin=".5">
<Line.Stroke>
<SolidColorBrush Color="Gray" />
</Line.Stroke>
</Line>
<Line SnapsToDevicePixels="True"
Stretch="Fill"
StrokeDashArray="1,2"
StrokeThickness="1"
X1="0"
X2="1"
Margin=".5">
<Line.Stroke>
<SolidColorBrush Color="Gray" />
</Line.Stroke>
</Line>
<Line SnapsToDevicePixels="True"
Stretch="Fill"
StrokeDashArray="1,2"
StrokeThickness="1"
X1="0"
X2="1"
Margin=".5">
<Line.Stroke>
<SolidColorBrush Color="Gray" />
</Line.Stroke>
</Line>
</StackPanel>
</Border>
</ControlTemplate>
design blah blah design
</StackPanel>
</StackPanel>
</Grid>
</Border>
</ControlTemplate>
<!-- =================================================================== -->
<!-- Style -->
<!-- =================================================================== -->
<Style TargetType="{x:Type MyNamespace:IsesFormatBar}">
<Setter Property="Template"
Value="{StaticResource richTextBoxFormatBarTemplate}" />
<Setter Property="Effect">
<Setter.Value>
<DropShadowEffect BlurRadius="5"
Opacity=".25" />
</Setter.Value>
</Setter>
<Setter Property="Background"
Value="Transparent" />
<Setter Property="IsTabStop"
Value="false" />
</Style>
抱歉,很多Xaml!
我有Ises.FormatBar.cs
,它将我的所有代码保留在/ logic之后,并继承自Control.
当我尝试查看Generic.xaml
的设计师时,我没有得到任何设计师和消息&#39;故意留空。视觉设计师不支持文档根元素。&#39;
我的xaml代码可能无法正确绑定到Ises.FormatBar.cs
?
答案 0 :(得分:1)
当我尝试查看Generic.xaml的Designer时,我没有设计师和 消息'故意留空。
这很好。这是因为您正在尝试在设计器中查看ResourceDictionary。
这是唯一的问题吗? 我还猜测当你将这个自定义控件用于其他一些用户控件时,你无法看到预期的视图。
理想情况下,您不应该在自定义控件样式中包含“x:Key =”IsesFormatTemplate“。这样它就可以应用于所有用法而无需明确包含样式。删除密钥或包含{{ 1}}在所有用法中。