Beispiel #1
0
Datei: test.cs Projekt: mono/gert
	static void Main ()
	{
		ParseFun runner = new ParseFun (ParseA);
		runner ("a", CultureInfo.InvariantCulture);

		runner = new ParseFun (ParseB);
		runner ("b", CultureInfo.InvariantCulture);
	}
Beispiel #2
0
        public Plot(Control c)
        {
            Parse         = ParseRaw;
            Visualize     = Draw;
            MatrixUpdate += OnMatrixUpdate;

            SetTargetControl(c);

            wheelEndTimer.Interval = 30;
            wheelEndTimer.Tick    += WheelEndTimer_Tick;
        }