将混合按钮添加到 Visual Studio 项目

发布于 2024-10-17 18:48:58 字数 388 浏览 1 评论 0原文

我拖动了 style->simple 按钮并复制了 xml 并放入我的 Visual Studio xml 中,除了一个

<Button Content="Button" Margin="814,496,22,29" Style="{DynamicResource SimpleButton}"/>

xml 在 DynamicResource 处给出错误并表示未找到资源之外,所有问题都得到了解决,就好像我通过打开混合中制作的解决方案看到了这一行一样将鼠标悬停在它上面说它

MS.Internal.Design.Metadata.ReflectionTypeNode

肯定是丢失的,但找不到它来添加 请帮忙

I draged style->simple button and copied the xml and placed in my visual studio xml every thing is resolved except one

<Button Content="Button" Margin="814,496,22,29" Style="{DynamicResource SimpleButton}"/>

xml gives error at DynamicResource and says not resource not found where as if i see this line by opening the solution made in blend and mouse over it says it is

MS.Internal.Design.Metadata.ReflectionTypeNode

so surely this is missing but cannot find it to add
please help

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

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

发布评论

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

评论(1

梨涡少年 2024-10-24 18:48:58

在 Blend 项目中,您应该有一个名为“Simple Styles.xaml”的文件。将其复制到您的 Visual Studio 项目并在 App.xaml 中添加对它的引用:

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

In the Blend project you should have a file called "Simple Styles.xaml". Copy it to your Visual Studio project and add reference to it in your App.xaml:

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