Exemplo n.º 1
0
	public static void Main(String[] args) {

		Application.Init();
		StickyUI UI = new StickyUI();

		if (args.Length > 0 && args[0] == "-h")
			UI.HideNotes();
		else
			UI.ShowNotes();

		Application.Run();

	}
Exemplo n.º 2
0
    public static void Main(String[] args)
    {
        Application.Init();
        StickyUI UI = new StickyUI();

        if (args.Length > 0 && args[0] == "-h")
        {
            UI.HideNotes();
        }
        else
        {
            UI.ShowNotes();
        }

        Application.Run();
    }