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

UITypeEditorEditStyle.cs « System.Drawing.Design « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a571cc7cc4bb8f9dfa7897269137a840f5dcc3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// System.Drawing.Design.UITypeEditorEditStyle.cs
//
// (C) 2001 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Design
{
	public enum  UITypeEditorEditStyle{
			DropDown=1,
			Modal=2,
			None=3
	}
}