Akane.Form.Form C# (CSharp) Method

Form() public method

public Form ( ) : System
return System
        public Form()
        {
            InitializeComponent();

            this.timer = new Timer();
            this.timer.Tick += new EventHandler(timerHandler);
            this.timer.Interval = 1000;

            board1.BoardName = label3.Text;
            board2.BoardName = label4.Text;
            board3.BoardName = label5.Text;
            board4.BoardName = label6.Text;
        }