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.
我对 WPF 有疑问。下面是2段代码。第一个是用于 Windows 窗体应用程序和工作。第二个是用于 WPF 应用程序并且不起作用。
有人可以解释我做错了什么吗?
public WpfLogger(String fileName, Form form, TextBox textBox)
public WpfLogger(String fileName, Wpf wpf, TextBox textBox)
没有名为 的类Wpf。如果您正在寻找相当于
Wpf
System.Windows.Forms.Form,那将是System.Windows.Window。
System.Windows.Forms.Form
System.Windows.Window
顺便说一句,WPF 本身就是一个复杂的框架(不适合没有经验的人),我建议您先通过一些控制台应用程序练习来学习 C# 和 OOP 的基础知识。