Example #1
0
        public static LoadingView Instance(Form f)
        {
            if (instance == null)
            {
                instance = new LoadingView();
                instance.init(f);
            }

            return(instance);
        }