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

PropertyGridEntry.cs « System.Windows.Forms « Managed.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e71c6366264f42411640d077f6f9351ded750ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.ComponentModel;

namespace System.Windows.Forms.PropertyGridInternal {
	/// <summary>
	/// Summary description for PropertyGridEntry.
	/// </summary>
	internal class PropertyGridEntry : GridEntry {
		public PropertyGridEntry() {
			//
			// TODO: Add constructor logic here
			//
		}

		public PropertyGridEntry(object obj, PropertyDescriptor prop_desc) : base(obj, prop_desc) {
		}
	}
}