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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/Managed.Windows.Forms/System.Windows.Forms/PropertyGridEntry.cs')
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/PropertyGridEntry.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/PropertyGridEntry.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/PropertyGridEntry.cs
new file mode 100644
index 00000000000..1e71c636626
--- /dev/null
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/PropertyGridEntry.cs
@@ -0,0 +1,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) {
+ }
+ }
+}