コード例 #1
0
ファイル: HumbleMain.cs プロジェクト: MySheep/LearnCoding
        static void Main()
        {
            HumbleDialog view  = new HumbleDialog();
            HumbleModel  model = new HumbleModel(view);

            view.SetModel(model);

            model.Initialize();

            Application.Run(view);
        }
コード例 #2
0
ファイル: HumbleDialog.cs プロジェクト: MySheep/LearnCoding
 public void SetModel(HumbleModel model)
 {
     m_model = model;
 }