Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MockedSampleControlButton.cs « Xamarin.PropertyEditing.Mac.Standalone - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc1edd27c37e2688f526162f8a2124261eecce70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using Foundation;
using ObjCRuntime;
using Xamarin.PropertyEditing.Tests.MockControls;

namespace Xamarin.PropertyEditing.Mac.Standalone
{
	[Foundation.Register ("MockedSampleControlButton")]
	public class MockedSampleControlButton : MockedControlButton<MockSampleControl>
	{
		// Called when created from unmanaged code
		public MockedSampleControlButton (NativeHandle handle) : base (new MockSampleControl (), handle)
		{
		}

		// Called when created directly from a XIB file
		[Export ("initWithCoder:")]
		public MockedSampleControlButton (NSCoder coder) : base (new MockSampleControl (), coder)
		{
		}
	}
}