.Net Core 3.1 的 2.0 版中找不到 MahApps ToggleSwitch 属性

Posted

技术标签:

【中文标题】.Net Core 3.1 的 2.0 版中找不到 MahApps ToggleSwitch 属性【英文标题】:MahApps ToggleSwitch properties not found in version 2.0 in .Net Core 3.1 【发布时间】:2020-03-24 13:49:52 【问题描述】:

我创建了一个新的 .Net Core 3.1 WPF 应用程序。 我为 MahApps.Metro v 2.0.0-alpha0748 添加了 nuget 包

我在 xaml 中添加了一个切换开关

<Window x:Class="WpfTestSandbox.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfTestSandbox"
    xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"
    mc:Ignorable="d"
    Title="MainWindow" Height="450" Width="800">
    <Grid>
        <mah:ToggleSwitch Header="WiFi rest state"
            Ischecked="True" />
    </Grid>
</Window>

这是我的 App.xaml

<Application x:Class="WpfTestSandbox.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:WpfTestSandbox"
         StartupUri="MainWindow.xaml">
<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <!-- MahApps.Metro resource dictionaries. Make sure that all file names are Case Sensitive! -->
            <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
            <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
            <!-- Accent and AppTheme setting -->
            <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/dark.green.xaml" />
            <ResourceDictionary>
                <SolidColorBrush x:Key="x:Static SystemColors.WindowTextBrushKey" Color="White"/>
            </ResourceDictionary>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary> 
</Application.Resources>
</Application>

IsChecked 在类型 ToggleSwitch 中被标记为未找到。

也找不到其他属性... OffLabel、OnLabel、IsCheckedChanged、...

我是否缺少依赖项?

TIA

【问题讨论】:

您是否在app.xaml 中添加了样式参考? 见上文(刚刚添加)- 是的,我有 @Jeff:我相信该属性在 2.0.0-alpha0748 中称为 IsOn 只是 看到了 - 我正在查看对象浏览器。大多数属性和事件都发生了变化 - sigh 【参考方案1】:

该属性在2.0.0-alpha0748 中称为IsOn

OffLabelOnLabel分别是OffContentOnContentIsCheckedChangedToggled

【讨论】:

以上是关于.Net Core 3.1 的 2.0 版中找不到 MahApps ToggleSwitch 属性的主要内容,如果未能解决你的问题,请参考以下文章

.Net Core 3.1 和 .Net 5.0 是不是支持 XPath 2.0?

使用 .Net Core 3.1 运行 XSLT 2.0

在 .NET Core 项目中找不到 System.ServiceModel

在 Asp.Net Core 2.1 中找不到帐户页面

Google OAuth 2.0 得到错误 400:redirect_uri_mismatch,ASP.net core 3.1

在 ASP.NET Core Web API 的已注册 .NET 数据提供程序列表中找不到指定的不变名称“System.Data.sqlClient”