English 中文(简体)
未找到的方法(实施接口的配套框架窗口形式)
原标题:Method not found (Compact framework windows form implementing an interface)

Windows Mobile 6.5 Application
VS 2008 (9.0.30729.4462)

我有一个项目myproject.base,有接口IGuiStuff

I have another project myproject.impl that has a control ctrl and a form frm.

myproject.impl referencemyproject.base.

控制<代码>ctrl 执行IGuiStuff

public interface IGuiStuff
{
    InputPanel MyPanel {get; set;}
}

当我使用<代码>ctrl时,frm i 在试图查看设计师时,有一个例外,即<代码>MyPanel是通过<代码>ctrl执行的。 但是,MyPanelis,由ctrl执行。

我曾尝试过各种清洁/再造/双手 st/优惠......。

我下一步应做些什么?

<><>Update 1

I have tried building a new project structure from scratch with the same settings as in the current projects. Then I have added all .cs, .Desiger.cs and .resx files from each project and built the project. The exact same problem still occurs.

<><>Update 2

利用IL Spy,我可以核实执行工作确实已经完成。

我也把该项目复制到一台新安装的计算机上,这完全是同样的错误。

<><>Update 3

如果我从控制定义中提一下接口,我又发现另一个错误,试图对表格设计师进行观察:

不能装上微软文档或组装。 WindowsCE.Forms, edition=3.5.0.0, Culture= Neu, PublicKey Token=969db8053d3322ac或其一个属地。 所在地的议会明确定义与集会参照不相符。 (摘自HRESULT: 0x80131040)

我还发现每个用户控制都存在错误,称从未分配过。

Btw, I have installed Microsoft.WindowsCE.Forms, Version=3.5.0.0 into GAC.

www.un.org/Depts/DGACM/index_spanish.htm 附录4

我在更新《契约框架》3.5之前,先从源头控制找到最后版本。 页: 1 (只有设计者,最终方案进行罚款)

Is it a bug or is it something that goes wrong while upgrading?

问题回答

暂无回答




相关问题
Bring window to foreground after Mutex fails

I was wondering if someone can tell me what would be the best way to bring my application to the foreground if a mutex was not able to be created for a new instance. E.g.: Application X is running ...

How to start WinForm app minimized to tray?

I ve successfully created an app that minimizes to the tray using a NotifyIcon. When the form is manually closed it is successfully hidden from the desktop, taskbar, and alt-tab. The problem occurs ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

Handle DataTable.DataRow cell change event

I have a DataTable that has several DataColumns and DataRow. Now i would like to handle an event when cell of this DataRow is changed. How to do this in c#?

Apparent Memory Leak in DataGridView

How do you force a DataGridView to release its reference to a bound DataSet? We have a rather large dataset being displayed in a DataGridView and noticed that resources were not being freed after the ...

ALT Key Shortcuts Hidden

I am using VS2008 and creating forms. By default, the underscore of the character in a textbox when using an ampersand is not shown when I run the application. ex. "&Goto Here" is not ...

WPF-XAML window in Winforms Application

I have a Winforms application coded in VS C# 2008 and want to insert a WPF window into the window pane of Winforms application. Could you explain me how this is done.

热门标签