我在 Ubuntu 12.04 中使用 mcs 版本 2.10.8.1,我有以下代码:
using System;
using System.Drawing;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog dlg = new OpenFileDialog();
dlg.ShowDialog();
if (dlg.ShowDialog() == DialogResult.OK)
{
string fileName;
fileName = dlg.FileName;
MessageBox.Show(fileName);
}
}
}
}
我使用命令编译
$ mcs source_code.cs -r:System.Windows.Forms.dll -r:System.Drawing.dll
我收到错误
source_code.cs(11,13): error CS0103: The name `InitializeComponent' does not exist in the current context
Compilation failed: 1 error(s), 0 warnings
在使用 Visual Basic 的情况下,我已经看到了很多关于这个问题的答案。我想知道我应该怎么做才能解决这个问题。谢谢。