1
我使用MCS版本2.10.8.1,我有以下代碼:的InitializeComponent不會在目前情況下在Ubuntu 12.04中存在,使用單聲道C#編譯器
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巴斯看到許多這個問題的答案的情況下C;我想知道我應該如何解決這個問題。謝謝。
我認爲它一定是從MSVS導入的,由「partial」關鍵字來判斷。 – antonijn 2013-02-10 09:59:24
@Antonijn:看起來它*可能*是 - 但你可以很容易地手寫部分類... – 2013-02-10 09:59:56