This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathAddressBookController.xib.designer.cs
133 lines (114 loc) · 3.35 KB
/
AddressBookController.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// ------------------------------------------------------------------------------
// <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 MonoCatalog {
// Base type probably should be MonoTouch.UIKit.UIViewController or subclass
[Foundation.Register("AddressBookController")]
public partial class AddressBookController {
private UIKit.UIView __mt_view;
private UIKit.UILabel __mt_firstName;
private UIKit.UILabel __mt_lastName;
private UIKit.UISwitch __mt_performAction;
private UIKit.UISwitch __mt_selectProperty;
private UIKit.UILabel __mt_property;
private UIKit.UILabel __mt_identifier;
private UIKit.UILabel __mt_toString;
#pragma warning disable 0169
[Foundation.Export("showPicker:")]
partial void showPicker (UIKit.UIButton sender);
[Foundation.Connect("view")]
private UIKit.UIView view {
get {
this.__mt_view = ((UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}
[Foundation.Connect("firstName")]
private UIKit.UILabel firstName {
get {
this.__mt_firstName = ((UIKit.UILabel)(this.GetNativeField("firstName")));
return this.__mt_firstName;
}
set {
this.__mt_firstName = value;
this.SetNativeField("firstName", value);
}
}
[Foundation.Connect("lastName")]
private UIKit.UILabel lastName {
get {
this.__mt_lastName = ((UIKit.UILabel)(this.GetNativeField("lastName")));
return this.__mt_lastName;
}
set {
this.__mt_lastName = value;
this.SetNativeField("lastName", value);
}
}
[Foundation.Connect("performAction")]
private UIKit.UISwitch performAction {
get {
this.__mt_performAction = ((UIKit.UISwitch)(this.GetNativeField("performAction")));
return this.__mt_performAction;
}
set {
this.__mt_performAction = value;
this.SetNativeField("performAction", value);
}
}
[Foundation.Connect("selectProperty")]
private UIKit.UISwitch selectProperty {
get {
this.__mt_selectProperty = ((UIKit.UISwitch)(this.GetNativeField("selectProperty")));
return this.__mt_selectProperty;
}
set {
this.__mt_selectProperty = value;
this.SetNativeField("selectProperty", value);
}
}
[Foundation.Connect("property")]
private UIKit.UILabel property {
get {
this.__mt_property = ((UIKit.UILabel)(this.GetNativeField("property")));
return this.__mt_property;
}
set {
this.__mt_property = value;
this.SetNativeField("property", value);
}
}
[Foundation.Connect("identifier")]
private UIKit.UILabel identifier {
get {
this.__mt_identifier = ((UIKit.UILabel)(this.GetNativeField("identifier")));
return this.__mt_identifier;
}
set {
this.__mt_identifier = value;
this.SetNativeField("identifier", value);
}
}
[Foundation.Connect("toString")]
private UIKit.UILabel toString {
get {
this.__mt_toString = ((UIKit.UILabel)(this.GetNativeField("toString")));
return this.__mt_toString;
}
set {
this.__mt_toString = value;
this.SetNativeField("toString", value);
}
}
}
}