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

MaterialDesignColorEditorControl.cs « Xamarin.PropertyEditing.Windows - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fc75c5ea1512b323344b9cf1006dd1ad09e5e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Windows;

namespace Xamarin.PropertyEditing.Windows
{
	internal class MaterialDesignColorEditorControl
		: PropertyEditorControl
	{
		static MaterialDesignColorEditorControl ()
		{
			FocusableProperty.OverrideMetadata (typeof (MaterialDesignColorEditorControl), new FrameworkPropertyMetadata (false));
			DefaultStyleKeyProperty.OverrideMetadata (typeof (MaterialDesignColorEditorControl), new FrameworkPropertyMetadata (typeof (MaterialDesignColorEditorControl)));
		}
	}
}