forked from xamarin/KimonoDesigner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KimonoInspectorSketch.designer.cs
141 lines (108 loc) · 3.13 KB
/
KimonoInspectorSketch.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
134
135
136
137
138
139
140
141
// 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 KimonoMac
{
[Register ("KimonoInspectorSketch")]
partial class KimonoInspectorSketch
{
[Outlet]
AppKit.NSColorWell CanvasColor { get; set; }
[Outlet]
AppKit.NSButton CanvasColorCheckbox { get; set; }
[Outlet]
AppKit.NSButton DeleteButton { get; set; }
[Outlet]
AppKit.NSSlider OpacitySlider { get; set; }
[Outlet]
AppKit.NSTextField OpacityValue { get; set; }
[Outlet]
AppKit.NSTextField SketchHeight { get; set; }
[Outlet]
AppKit.NSTextField SketchName { get; set; }
[Outlet]
AppKit.NSTextField SketchWidth { get; set; }
[Outlet]
AppKit.NSButton ToBitmapCheckbox { get; set; }
[Outlet]
AppKit.NSButton ToCanvasCheckbox { get; set; }
[Outlet]
AppKit.NSButton ToDataCheckbox { get; set; }
[Outlet]
AppKit.NSButton UseSkiaSharpViewsCheckbox { get; set; }
[Action ("CanvasColorChanged:")]
partial void CanvasColorChanged (Foundation.NSObject sender);
[Action ("DeleteSketch:")]
partial void DeleteSketch (Foundation.NSObject sender);
[Action ("DuplicateSketch:")]
partial void DuplicateSketch (Foundation.NSObject sender);
[Action ("HasCanvasColorChanged:")]
partial void HasCanvasColorChanged (Foundation.NSObject sender);
[Action ("OpacityChanged:")]
partial void OpacityChanged (Foundation.NSObject sender);
[Action ("ToBitmapChanged:")]
partial void ToBitmapChanged (Foundation.NSObject sender);
[Action ("ToCanvasChanged:")]
partial void ToCanvasChanged (Foundation.NSObject sender);
[Action ("ToDataChanged:")]
partial void ToDataChanged (Foundation.NSObject sender);
[Action ("UseSkiaSharpViewsChanged:")]
partial void UseSkiaSharpViewsChanged (Foundation.NSObject sender);
void ReleaseDesignerOutlets ()
{
if (DeleteButton != null) {
DeleteButton.Dispose ();
DeleteButton = null;
}
if (CanvasColor != null) {
CanvasColor.Dispose ();
CanvasColor = null;
}
if (CanvasColorCheckbox != null) {
CanvasColorCheckbox.Dispose ();
CanvasColorCheckbox = null;
}
if (OpacitySlider != null) {
OpacitySlider.Dispose ();
OpacitySlider = null;
}
if (OpacityValue != null) {
OpacityValue.Dispose ();
OpacityValue = null;
}
if (SketchHeight != null) {
SketchHeight.Dispose ();
SketchHeight = null;
}
if (SketchName != null) {
SketchName.Dispose ();
SketchName = null;
}
if (SketchWidth != null) {
SketchWidth.Dispose ();
SketchWidth = null;
}
if (ToBitmapCheckbox != null) {
ToBitmapCheckbox.Dispose ();
ToBitmapCheckbox = null;
}
if (ToCanvasCheckbox != null) {
ToCanvasCheckbox.Dispose ();
ToCanvasCheckbox = null;
}
if (ToDataCheckbox != null) {
ToDataCheckbox.Dispose ();
ToDataCheckbox = null;
}
if (UseSkiaSharpViewsCheckbox != null) {
UseSkiaSharpViewsCheckbox.Dispose ();
UseSkiaSharpViewsCheckbox = null;
}
}
}
}