我想创建一个控件来表现如下:
<controls:FontIcon Code=""
IconStyle="Solid"
FontSize="25" />
可悲的是,我似乎无法根据FontFamily
来切换IconStyle
。
public class FontIcon : TextBlock
{
public static readonly DependencyProperty IconStyleProperty =
DependencyProperty.Register(
"IconStyle",
typeof(Style),
typeof(FontIcon),
new PropertyMetadata(Controls.Style.Regular));
public static readonly DependencyProperty CodeProperty =
DependencyProperty.Register(
"Code",
typeof(string),
typeof(FontIcon),
new PropertyMetadata(null));
public string Code
{
get { return (string) GetValue(TextProperty); }
set { SetValue(TextProperty, value); }
}
public Style IconStyle
{
get { return (Style) GetValue(IconStyleProperty); }
set
{
SetValue(IconStyleProperty, value);
SwitchFontFamily(value);
}
}
private void SwitchFontFamily(Style style)
{
switch (style)
{
case Controls.Style.Regular:
SetValue(FontFamilyProperty, new FontFamily(new Uri(@"pack://application:,,,//<MyClassLibsNamespace>;component/Fonts/Font Awesome 5 Pro-Regular-400.otf"), "Font Awesome 5 Pro Regular"));
break;
case Controls.Style.Solid:
SetValue(FontFamilyProperty, new FontFamily(new Uri(@"pack://application:,,,//<MyClassLibsNamespace>;component/Fonts/Font Awesome 5 Pro-Solid-900.otf"), "Font Awesome 5 Pro Solid"));
break;
case Controls.Style.Light:
SetValue(FontFamilyProperty, new FontFamily(new Uri(@"pack://application:,,,/<MyClassLibsNamespace>;component/Fonts/Font Awesome 5 Pro-Light-300.otf"), "Font Awesome 5 Pro Light"));
break;
}
}
}
public enum Style
{
Regular,
Solid,
Light
}
为什么不显示我的图标?
编辑1
private void SwitchFontFamily(Style style)
{
switch (style)
{
case Controls.Style.Regular:
FontFamily fromLibs = new FontFamily(new Uri("pack://application:,,,/UIToolsWPF;component/"), "./Fonts/#Font Awesome 5 Pro Regular");
FontFamily = fromLibs;
break;
//case Controls.Style.Solid:
// FontFamily = new FontFamily(new Uri(@"pack://application:,,,/UIToolsWPF;component/Fonts/Font Awesome 5 Pro-Solid-900.otf"), "Font Awesome 5 Pro Solid");
// break;
//case Controls.Style.Light:
// FontFamily = new FontFamily(new Uri(@"pack://application:,,,/UIToolsWPF;component/Fonts/Font Awesome 5 Pro-Light-300.otf"), "Font Awesome 5 Pro Light");
// break;
}
}
<StackPanel VerticalAlignment="Center"
HorizontalAlignment="Center">
<controls:FontIcon HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="25"
x:Name="FontIcon"
Text=""
IconStyle="Regular" />
<TextBlock Text="{Binding ElementName=FontIcon, Path=FontFamily}" />
</StackPanel>
答案 0 :(得分:0)
为了完成这项工作,我不得不使用here中描述的模式。
// The font resource reference includes the base URI reference (application directory level),
// and a relative URI reference.
myTextBlock.FontFamily = new FontFamily(new Uri("pack://application:,,,/"), "./resources/#Pericles Light");
我用过:
string fontRoot = "pack://application:,,,/<MyReferencedAssembly>;component/";
FontFamily = new FontFamily(new Uri(fontRoot), "./Fonts/#Font Awesome 5 Pro Regular");