我目前正在将Compact Framework 2.0应用程序迁移到新的Windows Embedded 7 Compact机器,并且必须为CF 3.5重新编译它。它编译但根本不运行。
我正在使用OpenNETCF 2.3版,在开始我的调试过程之前,我想确认它确实与Compact Framework 3.5兼容。
谢谢。
编辑, 这些是我正在使用的组件。
当我创建属于实现IMessageFilter的类的对象时发生了阻塞,请参阅下面的代码
public class Program
{
public static FormFilter myFilter = new FormFilter(); //chocking happens here!
public static void Main(string[] args)
{
//main code here
}
public class FormFilter : IMessageFilter
{
private frmMain _frmOwner;
//messages
static int WM_LBUTTONDOWN = 0x0201;
const int WM_CLOSE = 0x0010;
const int WM_KEYDOWN = 0x100;
//button related:
private List<Button> buttonList;
private List<TextBox> txtBoxList;
public FormFilter()
{
buttonList = new List<Button>();
txtBoxList = new List<TextBox>();
}
public bool PreFilterMessage(ref Microsoft.WindowsCE.Forms.Message m)
{ }
//watch buttons etc functions go here
} //end of FormFilter class
} //end of Program
答案 0 :(得分:3)
是的,SDF 2.3与Compact Framework 2.0或3.5兼容。如果不确切知道您正在使用哪些部分,我无法进一步了解可能导致应用无法运行的原因。
答案 1 :(得分:1)
事实证明,我是一个运行不是Windows CE的Windows Embedded Standard,因此OpenNETCF dll不会在其上运行。
请参阅Unable to load DLL 'coredll.dll' : the specified module could not be found以获取克里斯的详细答案。