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

UnfocusableTextField.cs « Custom « Controls « Xamarin.PropertyEditing.Mac - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f54de51ac4bda33902a4fa9d505a45dac90b4818 (plain)
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
using System;
using System.Collections;
using System.ComponentModel;
using AppKit;
using CoreGraphics;

namespace Xamarin.PropertyEditing.Mac
{
	class UnfocusableTextField : NSTextField
	{
		public UnfocusableTextField () : base ()
		{
			SetDefaultProperties ();
		}

		public UnfocusableTextField (CGRect frameRect, string text) : base (frameRect)
		{
			StringValue = text;
			SetDefaultProperties ();
		}

		void SetDefaultProperties ()
		{
			Bordered = false;
			Editable = false;
			Selectable = false;
			ControlSize = NSControlSize.Small;
			Font = NSFont.FromFontName (PropertyEditorControl.DefaultFontName, PropertyEditorControl.DefaultPropertyLabelFontSize);
		}

		public override void DrawRect (CGRect dirtyRect)
		{
			CGPoint origin = new CGPoint (0.0f, 4.0f);
			CGRect rect = new CGRect (origin, new CGSize (Bounds.Width - 5, Bounds.Height));

			this.AttributedStringValue.DrawInRect (rect);
		}
	}
}