Controller.InitController C# (CSharp) 메소드

InitController() 보호된 메소드

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

Usage Example

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

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