Controller.InitController C# (CSharp) Method

InitController() protected method

protected InitController ( ) : void
return void
    protected virtual void InitController()
    {
        mCommandMap = new Dictionary<string, Type>();
        mViewCmdMap = new Dictionary<IView, List<string>>();
    }

Usage Example

Esempio n. 1
0
        public Form1()
        {
            controller = new Controller();
            controller.InitController();

            InitializeComponent();
            ModifyLayout();
        }
All Usage Examples Of Controller::InitController