示例#1
0
        private void createNewMod()
        {
            NewModCallback callback = new NewModCallback(this.manifestView);
            InputDialog    dialog   = new InputDialog("Create New Mod", "Type the name of your mod (lowercase only, no spaces):", "my_test_mod", "Create!");

            dialog.SetCallback(callback);
            dialog.ShowDialog();
        }
 private void createNewMod()
 {
     NewModCallback callback = new NewModCallback(this.manifestView);
     InputDialog dialog = new InputDialog("Create New Mod", "Type the name of your mod (lowercase only, no spaces):", "my_test_mod", "Create!");
     dialog.SetCallback(callback);
     dialog.ShowDialog();
 }