forked from xamarin/ios-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xib.designer.cs
60 lines (52 loc) · 1.73 KB
/
MainWindow.xib.designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// ------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Mono Runtime Version: 4.0.30319.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
// ------------------------------------------------------------------------------
namespace MonoDevelopTouchCells {
// Base type probably should be MonoTouch.Foundation.NSObject or subclass
[Foundation.Register("AppDelegate")]
public partial class AppDelegate {
private UIKit.UIWindow __mt_window;
private UIKit.UITableView __mt_myTableView;
private UIKit.UINavigationController __mt_navigationController;
#pragma warning disable 0169
[Foundation.Connect("window")]
private UIKit.UIWindow window {
get {
this.__mt_window = ((UIKit.UIWindow)(this.GetNativeField("window")));
return this.__mt_window;
}
set {
this.__mt_window = value;
this.SetNativeField("window", value);
}
}
[Foundation.Connect("myTableView")]
private UIKit.UITableView myTableView {
get {
this.__mt_myTableView = ((UIKit.UITableView)(this.GetNativeField("myTableView")));
return this.__mt_myTableView;
}
set {
this.__mt_myTableView = value;
this.SetNativeField("myTableView", value);
}
}
[Foundation.Connect("navigationController")]
private UIKit.UINavigationController navigationController {
get {
this.__mt_navigationController = ((UIKit.UINavigationController)(this.GetNativeField("navigationController")));
return this.__mt_navigationController;
}
set {
this.__mt_navigationController = value;
this.SetNativeField("navigationController", value);
}
}
}
}