4

Error 1 The base class or interface 'System.ComponentModel.Component' in assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' referenced by type 'System.Windows.Forms.Timer' could not be resolved

k:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Windows.Forms.dll App2

system.windows.forms添加参考后,我收到此错误消息。

4

3 回答 3

4

由于您使用的是 Wpf,因此我制作了快速工作示例。确保您的项目引用看起来像这样。

在此处输入图像描述

主窗口

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Forms;

namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        Timer tmr = new Timer();
        public MainWindow()
        {
            InitializeComponent();
            tmr.Interval = 2000;
            tmr.Tick += new EventHandler(tmr_Tick);
            tmr.Start();
        }

        void tmr_Tick(object sender, EventArgs e)
        {
            tmr.Stop();
            throw new NotImplementedException();
        }
    }
}

正如 roken 所说,如果你可以使用 Wpf Dispatcher Timer 会更容易。在查看示例链接时,没有迫切需要使用 Windows 窗体计时器,由于这是一个 WPF 程序,因此调度程序计时器在这种情况下可以正常工作。

编辑根据您的链接修改

public partial class MainWindow : Window
{
    System.Windows.Threading.DispatcherTimer tmrStart = new System.Windows.Threading.DispatcherTimer();
    System.Windows.Threading.DispatcherTimer tmrStop = new System.Windows.Threading.DispatcherTimer();
    public MainWindow()
    {
        InitializeComponent();
        tmrStart.Interval = TimeSpan.FromSeconds(2); //Delay before shown
        tmrStop.Interval = TimeSpan.FromSeconds(3);  //Delay after shown
        tmrStart.Tick += new EventHandler(tmr_Tick);
        tmrStop.Tick += new EventHandler(tmrStop_Tick);

    }

    void tmrStop_Tick(object sender, EventArgs e)
    {
        tmrStop.Stop();
        label1.Content = "";
    }

    void tmr_Tick(object sender, EventArgs e)
    {
        tmrStart.Stop();
        label1.Content = "Success";
        tmrStop.Start();
    }

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        tmrStart.Start();
    }


}
于 2012-12-13T16:10:03.393 回答
3

如果您专门使用 WPF,则没有理由引用 System.Windows.Forms (WinForms)。这是两种不同的技术,除非必要,否则我不建议将它们混合使用。

如果您使用的是 WinForms 计时器,请考虑改用 WPF 的DispatcherTimer

于 2012-12-13T16:20:49.070 回答
0

尝试System手动添加引用。

1)右键单击您的项目。点击Unload Project

2)右键单击卸载的项目。点击Edit <YourProjectName>.csproj

3) 找到ItemGroup包含所有<Reference Include="AssemblyName">s 的那个并添加<Reference Include="System" />一个新行。

4)保存文件并右键单击您的项目并单击Reload Project

于 2012-12-13T15:57:30.287 回答