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: 8580fddc660548558df7ba7bc262b0ee4ec80bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
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; }

		bool IsDynamicallySized { get; }
		nint GetHeight (EditorViewModel vm);
	}
}