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

PolygonDrawingArea.cs « GdiTest - github.com/FreeRDP/GdiTest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 047fa1f1a5c2022656679556acdcce2fcd1d3ed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
namespace GdiTest
{
	public class PolygonDrawingArea : TestDrawingArea
	{
		private String dumpText;
		
		public PolygonDrawingArea ()
		{
			dumpText = "";
		}
		
		public override String getDumpText()
		{
			return dumpText;
		}
	}
}