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

IEditorView.cs « Controls « Xamarin.PropertyEditing.Mac - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6793622cf1121396bc743da0cbf09cfdf968419b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using AppKit;

using Xamarin.PropertyEditing.ViewModels;

namespace Xamarin.PropertyEditing.Mac
{
	internal interface IEditorView
	{
		/// <summary>
		/// Gets the native view.
		/// </summary>
		/// <value>Generally just `this`.</value>
		NSView NativeView { get; }

		EditorViewModel ViewModel { get; set; }
	}
}