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

CategoryGridEntry.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: 5f02ff70ef3fd73b3c32765c57dbf417cd740ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Drawing;

namespace System.Windows.Forms.PropertyGridInternal
{
	/// <summary>
	/// Summary description for CategoryGridEntry.
	/// </summary>
	internal class CategoryGridEntry : GridEntry
	{
		private string label;
		public CategoryGridEntry(string category)
		{
			label = category;
		}

		public override GridItemType GridItemType {
			get {
				return GridItemType.Category;
			}
		}


		public override string Label {
			get {
				return label;
			}
		}
	}
}