Monotouch 3.99.13
Monotouch 3.99.13
When I edit a XIB in Interface Builder, Monotouch fails to add all the Usings to the designer.cs files it generates. There are no partial clsses made.
当我在Interface Builder中编辑XIB时,Monotouch无法将所有Usings添加到它生成的designer.cs文件中。没有制作部分杂物。
Here's a code snip (notice no usings):
这是一个代码片段(注意没有使用):
// ------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Mono Runtime Version: 2.0.50727.1433
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
// ------------------------------------------------------------------------------
namespace General {
// Base type probably should be MonoTouch.Foundation.NSObject or subclass
[MonoTouch.Foundation.Register("AppDelegateIPad")]
public partial class AppDelegateIPad {
private UIWindow __mt_window;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("window")]
private UIWindow window {
get {
this.__mt_window = ((UIWindow)(this.GetNativeField("window")));
return this.__mt_window;
}
set {
this.__mt_window = value;
this.SetNativeField("window", value);
}
}
}
}
1 个解决方案
#1
0
Someone has filed this as a bug in the latest MonoDevelop here. Is that you? As far as I can tell MonoDevelop has never generated using statements in designer files.
有人将此作为最新MonoDevelop中的错误提交到此处。是你吗?据我所知,MonoDevelop从未在设计器文件中生成使用语句。
#1
0
Someone has filed this as a bug in the latest MonoDevelop here. Is that you? As far as I can tell MonoDevelop has never generated using statements in designer files.
有人将此作为最新MonoDevelop中的错误提交到此处。是你吗?据我所知,MonoDevelop从未在设计器文件中生成使用语句。