我似乎无法将表单和设计器文件链接到我的项目中。它们在解决方案资源管理器中看起来像这样。
我已从项目中排除了文件,然后尝试将它们包含在项目中,但这不起作用。 下面是设计器代码和表单代码的片段,以防有什么内容。
public partial class FormPrompt
{
private Button ButtonOk;
private Container Components;
private Label LabelPleaseEnter;
private Label LabelPrompt;
private TextBox TextBoxData;
private void InitializeComponent()
{
this.LabelPleaseEnter = new Label();
this.LabelPrompt = new Label();
this.TextBoxData = new TextBox();
this.ButtonOk = new Button();
this.LabelPleaseEnter.Location = new Point(8, 0x58);
this.LabelPleaseEnter.Size = new Size(0x48, 0x10);
this.LabelPleaseEnter.Text = "Please enter";
this.LabelPrompt.Location = new Point(80, 0x58);
this.LabelPrompt.Size = new Size(0x98, 0x10);
this.LabelPrompt.Text = "LabelPrompt";
this.TextBoxData.Location = new Point(8, 0x80);
this.TextBoxData.Size = new Size(0xe0, 20);
this.TextBoxData.Text = "TextBoxData";
this.TextBoxData.KeyDown += new KeyEventHandler(this.FormPrompt_KeyDown);
this.ButtonOk.Location = new Point(8, 0x100);
this.ButtonOk.Size = new Size(0xe0, 0x38);
this.ButtonOk.Text = "Ok";
this.ButtonOk.Click += new EventHandler(this.ButtonOk_Click);
base.ClientSize = new Size(240, 0x13e);
base.Controls.Add(this.TextBoxData);
base.Controls.Add(this.ButtonOk);
base.Controls.Add(this.LabelPrompt);
base.Controls.Add(this.LabelPleaseEnter);
this.Text = "WinForm";
base.KeyDown += new KeyEventHandler(this.FormPrompt_KeyDown);
}
}
public partial class FormPrompt : Form
{
internal DateTime FDateData;
internal DateTimePicker FDatePicker;
internal decimal FDecimalData;
internal int FIntData;
internal TPromptType FPromptType;
internal string FStringData;
public FormPrompt()
{
this.InitializeComponent();
this.FDatePicker = new DateTimePicker();
this.FDatePicker.Top = this.TextBoxData.Top;
this.FDatePicker.Left = this.TextBoxData.Left;
this.FDatePicker.Width = this.TextBoxData.Width;
this.FDatePicker.Height = this.TextBoxData.Height;
this.FDatePicker.Format = DateTimePickerFormat.Short;
base.Controls.Add(this.FDatePicker);
}
}
答案 0 :(得分:16)
检查项目(.csproj
)文件。
在ItemGroup
节点内,查看.designer
文件是否与代码隐藏文件相关联。 XML应如下所示:
<Compile Include="FormPrompt.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FormPrompt.Designer.cs">
<DependentUpon>FormPrompt.cs</DependentUpon>
</Compile>
答案 1 :(得分:16)
我在Visual Studio 2008中看到了同样的问题。通常在编译或关闭并重新打开解决方案之后,问题就会自行解决。在Visual Studio 2012中,我知道如果我尝试添加&gt;我会遇到问题现有项目并选择所有三个文件。通常,您只想添加顶级form.cs,VS将自动包含.designer.cs和.resx文件。
答案 2 :(得分:0)
在VS2017(c#)中解决它,在我的情况下:
答案 3 :(得分:0)
检查项目(.csproj)
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator> Check this
<SubType>Designer</SubType>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen> And Check this
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
答案 4 :(得分:0)
将.resx文件包含到项目中,并在此文件的属性中将“自定义工具”设置为 ResXFileCodeGenerator