示例#1
0
        public static DrawingTest Create(int width, int height, string ownerClass)
        {
            DrawingTest test;

            test = new NetDrawingTest();
            test.Init(width, height);
            test.OwnerClass = ownerClass;
            return(test);
        }
示例#2
0
		public static DrawingTest Create (int width, int height, string ownerClass) {
			DrawingTest test;
#if TARGET_JVM
			test = new JavaDrawingTest ();
#else
			test = new NetDrawingTest ();
#endif
			test.Init (width, height);
			test.OwnerClass = ownerClass;
			return test;
		}
示例#3
0
		public static DrawingTest Create (int width, int height, string ownerClass) {
			DrawingTest test;
#if TARGET_JVM
			test = new JavaDrawingTest ();
#else
			test = new NetDrawingTest ();
#endif
			test.Init (width, height);
			test.OwnerClass = ownerClass;
			return test;
		}
示例#4
0
		public static DrawingTest Create (int width, int height, string ownerClass) {
			DrawingTest test;
			test = new NetDrawingTest ();
			test.Init (width, height);
			test.OwnerClass = ownerClass;
			return test;
		}