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

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

namespace Xamarin.PropertyEditing.Windows
{
	[TemplatePart (Name = "TextBox", Type = typeof(TextBox))]
	public class StringEditorControl
		: PropertyEditorControl
	{
	}
}