示例#1
0
 private void custArray_MouseDown(object sender, MouseEventArgs e)
 {
     CharLCDmp_v1_00.CyCustomCharacter current    = (CharLCDmp_v1_00.CyCustomCharacter)sender;
     CharLCDmp_v1_00.CyBox             clickedBox = current.GetBoxByLocation(e.X, e.Y);
     if (clickedBox != null)
     {
         clickedBox.IsActive = !clickedBox.IsActive;
         m_activate          = clickedBox.IsActive;
         current.Invalidate();
     }
     this.m_highlighted.Invalidate();
 }
示例#2
0
 // Before runtime, if the number of columns or rows is changed, update.
 // Causes loss of box state data.
 private void CheckBoxArray()
 {
     CheckBoxSize();
     m_box = new CyBox[m_rows, m_columns];
     for (int row = 0; row < m_rows; row++)
     {
         for (int column = 0; column < m_columns; column++)
         {
             m_box[row, column] = new CyBox(row, column);
         }
     }
 }
示例#3
0
 private void custArray_MouseMove(object sender, MouseEventArgs e)
 {
     if ((e.Button == MouseButtons.Left) || (e.Button == MouseButtons.Right))
     {
         CharLCDmp_v1_00.CyCustomCharacter current    = (CharLCDmp_v1_00.CyCustomCharacter)sender;
         CharLCDmp_v1_00.CyBox             currentBox = current.GetBoxByLocation(e.X, e.Y);
         if (currentBox != null)
         {
             currentBox.IsActive = m_activate;
             current.Invalidate();
         }
     }
     this.m_highlighted.Invalidate();
 }