Exemple #1
0
	public PlotMenuItem (EventHandler callback)
	{
		callback_ = callback;

		PlotMenuItem child = new PlotMenuItem ();
		child.Callback += new EventHandler (callback);
	}
Exemple #2
0
    public PlotMenuItem(EventHandler callback)
    {
        callback_ = callback;

        PlotMenuItem child = new PlotMenuItem();

        child.Callback += new EventHandler(callback);
    }
Exemple #3
0
	public static int Main ()
	{
		PlotMenuItem pmi = new PlotMenuItem (new EventHandler (MenuItem_Click));
		pmi.Callback (null, null);
		
		if (set != 999)
			return 1;
			
		return 0;
	}
Exemple #4
0
    public static int Main()
    {
        PlotMenuItem pmi = new PlotMenuItem(new EventHandler(MenuItem_Click));

        pmi.Callback(null, null);

        if (set != 999)
        {
            return(1);
        }

        return(0);
    }