Controller.InitController C# (CSharp) Méthode

InitController() protected méthode

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

Usage Example

Exemple #1
0
        public Form1()
        {
            controller = new Controller();
            controller.InitController();

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