Record.cs 349 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace Tetris
  3. {
  4. public partial class Record
  5. {
  6. private string player;
  7. public string Player {
  8. get { return player; }
  9. }
  10. public Record ()
  11. {
  12. //InitializeComponent ();
  13. }
  14. private void OK_Click (object sender, EventArgs e)
  15. {
  16. //player = playerName.Text;
  17. //this.Close ();
  18. }
  19. }
  20. }