forked from xamarin/mac-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewController.designer.cs
41 lines (34 loc) · 988 Bytes
/
ViewController.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
// WARNING
//
// This file has been generated automatically by Visual 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 CircleView
{
[Register ("ViewController")]
partial class ViewController
{
[Outlet]
CircleView CircleView { get; set; }
[Action ("ApplyColor:")]
partial void ApplyColor (Foundation.NSObject sender);
[Action ("ApplyRadius:")]
partial void ApplyRadius (Foundation.NSObject sender);
[Action ("ApplySpin:")]
partial void ApplySpin (Foundation.NSObject sender);
[Action ("ApplyStartingAngle:")]
partial void ApplyStartingAngle (Foundation.NSObject sender);
[Action ("ApplyText:")]
partial void ApplyText (Foundation.NSObject sender);
void ReleaseDesignerOutlets ()
{
if (CircleView != null) {
CircleView.Dispose ();
CircleView = null;
}
}
}
}