-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainViewController.designer.cs
More file actions
75 lines (60 loc) · 1.59 KB
/
MainViewController.designer.cs
File metadata and controls
75 lines (60 loc) · 1.59 KB
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
// WARNING
//
// This file has been generated automatically by Xamarin Studio to store outlets and
// actions made in the UI designer. If it is removed, they will be lost.
// Manual changes to this file may not be handled correctly.
//
using Foundation;
using System.CodeDom.Compiler;
namespace SortingVisualisation
{
[Register ("MainViewController")]
partial class MainViewController
{
[Outlet]
UIKit.UILabel anzahlIterationenLabel { get; set; }
[Outlet]
UIKit.UISwitch colorSwitch { get; set; }
[Outlet]
SortingVisualisation.EAGLView glView { get; set; }
[Outlet]
UIKit.UISegmentedControl segmentedControl { get; set; }
[Outlet]
UIKit.UISlider slider { get; set; }
[Outlet]
UIKit.UILabel sortNameLabel { get; set; }
[Action ("infoClicked:")]
partial void infoClicked (Foundation.NSObject sender);
[Action ("switchChanged:")]
partial void switchChanged (Foundation.NSObject sender);
[Action ("termsOfUseClicked:")]
partial void termsOfUseClicked (Foundation.NSObject sender);
void ReleaseDesignerOutlets ()
{
if (anzahlIterationenLabel != null) {
anzahlIterationenLabel.Dispose ();
anzahlIterationenLabel = null;
}
if (colorSwitch != null) {
colorSwitch.Dispose ();
colorSwitch = null;
}
if (glView != null) {
glView.Dispose ();
glView = null;
}
if (segmentedControl != null) {
segmentedControl.Dispose ();
segmentedControl = null;
}
if (slider != null) {
slider.Dispose ();
slider = null;
}
if (sortNameLabel != null) {
sortNameLabel.Dispose ();
sortNameLabel = null;
}
}
}
}