有没有办法忽略 XAML 引发的 Visual Studio 错误?

发布于 2024-07-29 11:02:06 字数 905 浏览 3 评论 0原文

我知道您可以在 CodeBehind 中使用类似的方法来完成此操作...

#pragma warning disable 67
...
#pragma warning restore 67

但是有没有办法在 XAML 中执行此类操作?

例如,我的 App.xaml 中有以下内容...

<FontFamily x:Key="ExtendedFontFamily">Verdana</FontFamily>

并且它不断向我抛出这些 VS 错误(即使它构建成功)...

错误 1 ​​类型“FontFamily”不是 可用作对象元素,因为它 不是公开的或者没有定义 公共无参数构造函数或 类型 转换器。 C:\Users\jed.hunsaker\Documents\Work\NextGen\src\ESO.App.Reporting\ESO.App.Reporting.UI.Silverlight\App.xaml 8 4 ESO.App.Reporting.UI.Silverlight

和.. 。

错误 2 类型“FontFamily”不 支持直接 内容。 C:\Users\jed.hunsaker\Documents\Work\NextGen\src\ESO.App.Reporting\ESO.App.Reporting.UI.Silverlight\App.xaml 8 42 ESO.App.Reporting.UI.Silverlight

除非你们知道在 App.xaml 中存储 FontFamily 的更好方法,我洗耳恭听!

I know you can do it in CodeBehind with something like this...

#pragma warning disable 67
...
#pragma warning restore 67

But is there a way to do this type of thing in XAML?

For example, I have the following in my App.xaml...

<FontFamily x:Key="ExtendedFontFamily">Verdana</FontFamily>

And it keeps throwing me these VS errors (even though it builds successfully)...

Error 1 Type 'FontFamily' is not
usable as an object element because it
is not public or does not define a
public parameterless constructor or a
type
converter. C:\Users\jed.hunsaker\Documents\Work\NextGen\src\ESO.App.Reporting\ESO.App.Reporting.UI.Silverlight\App.xaml 8 4 ESO.App.Reporting.UI.Silverlight

and...

Error 2 The type 'FontFamily' does not
support direct
content. C:\Users\jed.hunsaker\Documents\Work\NextGen\src\ESO.App.Reporting\ESO.App.Reporting.UI.Silverlight\App.xaml 8 42 ESO.App.Reporting.UI.Silverlight

Unless you guys know a better way to store a FontFamily in your App.xaml, I'm all ears!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情栀口红 2024-08-05 11:02:06

您应该使用资源字典。 这是一个示例:

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <FontFamily x:Key="ExtendedFontFamily">Verdana</FontFamily>
</ResourceDictionary>

您应该像这样在 App.xaml 中引用(假设它们位于 Resources 文件夹中):

<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
                x:Class="SilverlightApplication3.App"
                >
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Resources/Fonts.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>

You should use a resource dictionary. Here is an example:

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <FontFamily x:Key="ExtendedFontFamily">Verdana</FontFamily>
</ResourceDictionary>

And you should reference in you App.xaml like so (assuming they are in a Resources folder):

<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
                x:Class="SilverlightApplication3.App"
                >
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Resources/Fonts.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文