ReversiPanle の概要の説明です。
Inheritance: System.Windows.Forms.Panel
Example #1
0
		private ReversiColor phase; //今、白黒どちらの攻撃中か

		public ReversiMainForm()
		{
			//
			// Windows フォーム デザイナ サポートに必要です。
			//
			InitializeComponent();

			this.panel = new ReversiPanel();
			this.panel.Location = new Point(0, 0);
			this.panel.CellClick += new CellClickHandler(OnCellClick);
			this.Controls.Add(panel);
		}
Example #2
0
        private ReversiColor phase;                     //今、白黒どちらの攻撃中か

        public ReversiMainForm()
        {
            //
            // Windows フォーム デザイナ サポートに必要です。
            //
            InitializeComponent();

            this.panel            = new ReversiPanel();
            this.panel.Location   = new Point(0, 0);
            this.panel.CellClick += new CellClickHandler(OnCellClick);
            this.Controls.Add(panel);
        }
Example #3
0
 public ReversiCell(int x, int y, ReversiPanel parent)
 {
     this.x      = x;
     this.y      = y;
     this.parent = parent;
 }
Example #4
0
			public ReversiCell(int x, int y, ReversiPanel parent)
			{
				this.x = x;
				this.y = y;
				this.parent = parent;
			}