无法在主编码中启动类

时间:2014-07-20 04:52:25

标签: c# .net wpf

我试图在主要编码中将表单称为显示对话框

我添加了以下屏幕截图,以帮助你们根据我的要求。我曾尝试在互联网上搜索,但也无法找到解决方案。

但itemsDeleteScreen,itemsEditScreen和AddScreens工作正常

图片截图 - http://i.stack.imgur.com/E66du.png

项目DeleteScreen代码:(哪个有效)

itemsDeleteScreen deleteItem = new itemsDeleteScreen();
            deleteItem.ShowDialog(this); // loads the Delete Items Screen

StockInsScreen代码:(哪些不起作用)

stockInsScreen stkIns = new stockInsScreen();
            stockInsScreen.ShowDialog(this);

我编译时遇到的错误是

The type or namespace name 'stockInsScreen' could not be found (are you missing a using directive or an assembly reference?)

1 个答案:

答案 0 :(得分:0)

导航到StockInScreen类并检查命名空间,它就像(yourproject.foldername)并在要使用的类中添加该名称空间。(来源:来自您提供的图像)。有关命名空间的信息,请查看在http://msdn.microsoft.com/en-us/library/z2kcy19k.aspx