Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何覆盖我定义AppBarButtonStyle Width/Height的自Button定义?
AppBarButtonStyle
Width/Height
Button
是否可以在除 之外的控件中表示Segoe UI 字体符号Button?如果是这样,怎么做?
您可以简单地创建一个TextBlock并将其设置FontFamily为Segoe UI Symbol并将文本设置为您想要显示的字形代码,您可以在字符映射应用程序中找到,例如Text="". 然后更改TextBlock您想要的任何其他属性。
TextBlock
FontFamily
Text=""
您甚至可以在这样的代码中执行此操作, textblock1.Text = ((char)0xE101).ToString();并将字体系列指定为 Segoe UI Symbol
textblock1.Text = ((char)0xE101).ToString();