问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

求一个桥牌系统叫牌器代码?

发布网友 发布时间:2024-07-21 08:31

我来回答

1个回答

热心网友 时间:2024-08-08 21:37

/// <summary>
/// 在叫牌器上显示北家牌
/// </summary>
private void ShowNorth()
{
lblShow.Text = "北";
int s = 0;
pic = new PictureBox[13];
foreach (int k in textE)
{
pic[s] = new PictureBox();
string filename = path + "\\..\\..\\img\\" + k.ToString() + ".gif";
pic[s].Image = Image.FromFile(filename);
this.Controls.Add(pic[s]);
pic[s].Left = 100 + 20 * s;
pic[s].Top = 380;
pic[s].Tag = k;
pic[s].Width = 85;
pic[s].Height = 110;
pic[s].SizeMode = PictureBoxSizeMode.StretchImage;
pic[s].BringToFront();
pic[s].Visible = true;
s++;
}
}
private void CallShow(Button btn)
{
try
{
string btnName = btn.Name;
int currentBtnNum = Convert.ToInt32(btnName.Substring(3));
if (currentBtnNum == 82 || currentBtnNum == 83)
{
//第一轮叫牌记录
#region
if (recordCall == 1)
{
if (lblShow.Text == "南")
{
lblS1.Text = lastCall + btn.Text;
lblS1.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW1.Text = lastCall + btn.Text;
lblW1.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN1.Text = lastCall + btn.Text;
lblN1.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE1.Text = lastCall + btn.Text;
lblE1.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第二轮叫牌记录
#region
else if (recordCall == 2)
{
if (lblShow.Text == "南")
{
lblS2.Text = lastCall + btn.Text;
lblS2.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW2.Text = lastCall + btn.Text;
lblW2.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN2.Text = lastCall + btn.Text;
lblN2.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE2.Text = lastCall + btn.Text;
lblE2.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第三轮叫牌记录
#region
else if (recordCall == 3)
{
if (lblShow.Text == "南")
{
lblS3.Text = lastCall + btn.Text;
lblS3.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW3.Text = lastCall + btn.Text;
lblW3.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN3.Text = lastCall + btn.Text;
lblN3.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE3.Text = lastCall + btn.Text;
lblE3.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第四轮叫牌记录
#region
else if (recordCall == 4)
{
if (lblShow.Text == "南")
{
lblS4.Text = lastCall + btn.Text;
lblS4.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW4.Text = lastCall + btn.Text;
lblW4.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN4.Text = lastCall + btn.Text;
lblN4.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE4.Text = lastCall + btn.Text;
lblE4.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第五轮叫牌记录
#region
else if (recordCall == 5)
{
if (lblShow.Text == "南")
{
lblS5.Text = lastCall + btn.Text;
lblS5.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW5.Text = lastCall + btn.Text;
lblW5.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN5.Text = lastCall + btn.Text;
lblN5.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE5.Text = lastCall + btn.Text;
lblE5.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第六轮叫牌记录
#region
else if (recordCall == 6)
{
if (lblShow.Text == "南")
{
lblS6.Text = lastCall + btn.Text;
lblS6.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW6.Text = lastCall + btn.Text;
lblW6.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN6.Text = lastCall + btn.Text;
lblN6.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE6.Text = lastCall + btn.Text;
lblE6.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第七轮叫牌记录
#region
else if (recordCall == 7)
{
if (lblShow.Text == "南")
{
lblS7.Text = lastCall + btn.Text;
lblS7.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW7.Text = lastCall + btn.Text;
lblW7.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN7.Text = lastCall + btn.Text;
lblN7.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE7.Text = lastCall + btn.Text;
lblE7.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
if (currentBtnNum == 82)
{
dO = lblShow.Text;
dFlag = true;
}
}

热心网友 时间:2024-08-08 21:37

/// <summary>
/// 在叫牌器上显示北家牌
/// </summary>
private void ShowNorth()
{
lblShow.Text = "北";
int s = 0;
pic = new PictureBox[13];
foreach (int k in textE)
{
pic[s] = new PictureBox();
string filename = path + "\\..\\..\\img\\" + k.ToString() + ".gif";
pic[s].Image = Image.FromFile(filename);
this.Controls.Add(pic[s]);
pic[s].Left = 100 + 20 * s;
pic[s].Top = 380;
pic[s].Tag = k;
pic[s].Width = 85;
pic[s].Height = 110;
pic[s].SizeMode = PictureBoxSizeMode.StretchImage;
pic[s].BringToFront();
pic[s].Visible = true;
s++;
}
}
private void CallShow(Button btn)
{
try
{
string btnName = btn.Name;
int currentBtnNum = Convert.ToInt32(btnName.Substring(3));
if (currentBtnNum == 82 || currentBtnNum == 83)
{
//第一轮叫牌记录
#region
if (recordCall == 1)
{
if (lblShow.Text == "南")
{
lblS1.Text = lastCall + btn.Text;
lblS1.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW1.Text = lastCall + btn.Text;
lblW1.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN1.Text = lastCall + btn.Text;
lblN1.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE1.Text = lastCall + btn.Text;
lblE1.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第二轮叫牌记录
#region
else if (recordCall == 2)
{
if (lblShow.Text == "南")
{
lblS2.Text = lastCall + btn.Text;
lblS2.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW2.Text = lastCall + btn.Text;
lblW2.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN2.Text = lastCall + btn.Text;
lblN2.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE2.Text = lastCall + btn.Text;
lblE2.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第三轮叫牌记录
#region
else if (recordCall == 3)
{
if (lblShow.Text == "南")
{
lblS3.Text = lastCall + btn.Text;
lblS3.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW3.Text = lastCall + btn.Text;
lblW3.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN3.Text = lastCall + btn.Text;
lblN3.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE3.Text = lastCall + btn.Text;
lblE3.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第四轮叫牌记录
#region
else if (recordCall == 4)
{
if (lblShow.Text == "南")
{
lblS4.Text = lastCall + btn.Text;
lblS4.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW4.Text = lastCall + btn.Text;
lblW4.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN4.Text = lastCall + btn.Text;
lblN4.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE4.Text = lastCall + btn.Text;
lblE4.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第五轮叫牌记录
#region
else if (recordCall == 5)
{
if (lblShow.Text == "南")
{
lblS5.Text = lastCall + btn.Text;
lblS5.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW5.Text = lastCall + btn.Text;
lblW5.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN5.Text = lastCall + btn.Text;
lblN5.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE5.Text = lastCall + btn.Text;
lblE5.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第六轮叫牌记录
#region
else if (recordCall == 6)
{
if (lblShow.Text == "南")
{
lblS6.Text = lastCall + btn.Text;
lblS6.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW6.Text = lastCall + btn.Text;
lblW6.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN6.Text = lastCall + btn.Text;
lblN6.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE6.Text = lastCall + btn.Text;
lblE6.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第七轮叫牌记录
#region
else if (recordCall == 7)
{
if (lblShow.Text == "南")
{
lblS7.Text = lastCall + btn.Text;
lblS7.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW7.Text = lastCall + btn.Text;
lblW7.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN7.Text = lastCall + btn.Text;
lblN7.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE7.Text = lastCall + btn.Text;
lblE7.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
if (currentBtnNum == 82)
{
dO = lblShow.Text;
dFlag = true;
}
}

热心网友 时间:2024-08-08 21:37

/// <summary>
/// 在叫牌器上显示北家牌
/// </summary>
private void ShowNorth()
{
lblShow.Text = "北";
int s = 0;
pic = new PictureBox[13];
foreach (int k in textE)
{
pic[s] = new PictureBox();
string filename = path + "\\..\\..\\img\\" + k.ToString() + ".gif";
pic[s].Image = Image.FromFile(filename);
this.Controls.Add(pic[s]);
pic[s].Left = 100 + 20 * s;
pic[s].Top = 380;
pic[s].Tag = k;
pic[s].Width = 85;
pic[s].Height = 110;
pic[s].SizeMode = PictureBoxSizeMode.StretchImage;
pic[s].BringToFront();
pic[s].Visible = true;
s++;
}
}
private void CallShow(Button btn)
{
try
{
string btnName = btn.Name;
int currentBtnNum = Convert.ToInt32(btnName.Substring(3));
if (currentBtnNum == 82 || currentBtnNum == 83)
{
//第一轮叫牌记录
#region
if (recordCall == 1)
{
if (lblShow.Text == "南")
{
lblS1.Text = lastCall + btn.Text;
lblS1.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW1.Text = lastCall + btn.Text;
lblW1.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN1.Text = lastCall + btn.Text;
lblN1.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE1.Text = lastCall + btn.Text;
lblE1.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第二轮叫牌记录
#region
else if (recordCall == 2)
{
if (lblShow.Text == "南")
{
lblS2.Text = lastCall + btn.Text;
lblS2.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW2.Text = lastCall + btn.Text;
lblW2.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN2.Text = lastCall + btn.Text;
lblN2.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE2.Text = lastCall + btn.Text;
lblE2.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第三轮叫牌记录
#region
else if (recordCall == 3)
{
if (lblShow.Text == "南")
{
lblS3.Text = lastCall + btn.Text;
lblS3.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW3.Text = lastCall + btn.Text;
lblW3.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN3.Text = lastCall + btn.Text;
lblN3.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE3.Text = lastCall + btn.Text;
lblE3.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第四轮叫牌记录
#region
else if (recordCall == 4)
{
if (lblShow.Text == "南")
{
lblS4.Text = lastCall + btn.Text;
lblS4.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW4.Text = lastCall + btn.Text;
lblW4.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN4.Text = lastCall + btn.Text;
lblN4.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE4.Text = lastCall + btn.Text;
lblE4.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第五轮叫牌记录
#region
else if (recordCall == 5)
{
if (lblShow.Text == "南")
{
lblS5.Text = lastCall + btn.Text;
lblS5.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW5.Text = lastCall + btn.Text;
lblW5.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN5.Text = lastCall + btn.Text;
lblN5.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE5.Text = lastCall + btn.Text;
lblE5.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第六轮叫牌记录
#region
else if (recordCall == 6)
{
if (lblShow.Text == "南")
{
lblS6.Text = lastCall + btn.Text;
lblS6.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW6.Text = lastCall + btn.Text;
lblW6.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN6.Text = lastCall + btn.Text;
lblN6.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE6.Text = lastCall + btn.Text;
lblE6.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第七轮叫牌记录
#region
else if (recordCall == 7)
{
if (lblShow.Text == "南")
{
lblS7.Text = lastCall + btn.Text;
lblS7.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW7.Text = lastCall + btn.Text;
lblW7.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN7.Text = lastCall + btn.Text;
lblN7.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE7.Text = lastCall + btn.Text;
lblE7.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
if (currentBtnNum == 82)
{
dO = lblShow.Text;
dFlag = true;
}
}

热心网友 时间:2024-08-08 21:38

/// <summary>
/// 在叫牌器上显示北家牌
/// </summary>
private void ShowNorth()
{
lblShow.Text = "北";
int s = 0;
pic = new PictureBox[13];
foreach (int k in textE)
{
pic[s] = new PictureBox();
string filename = path + "\\..\\..\\img\\" + k.ToString() + ".gif";
pic[s].Image = Image.FromFile(filename);
this.Controls.Add(pic[s]);
pic[s].Left = 100 + 20 * s;
pic[s].Top = 380;
pic[s].Tag = k;
pic[s].Width = 85;
pic[s].Height = 110;
pic[s].SizeMode = PictureBoxSizeMode.StretchImage;
pic[s].BringToFront();
pic[s].Visible = true;
s++;
}
}
private void CallShow(Button btn)
{
try
{
string btnName = btn.Name;
int currentBtnNum = Convert.ToInt32(btnName.Substring(3));
if (currentBtnNum == 82 || currentBtnNum == 83)
{
//第一轮叫牌记录
#region
if (recordCall == 1)
{
if (lblShow.Text == "南")
{
lblS1.Text = lastCall + btn.Text;
lblS1.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW1.Text = lastCall + btn.Text;
lblW1.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN1.Text = lastCall + btn.Text;
lblN1.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE1.Text = lastCall + btn.Text;
lblE1.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第二轮叫牌记录
#region
else if (recordCall == 2)
{
if (lblShow.Text == "南")
{
lblS2.Text = lastCall + btn.Text;
lblS2.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW2.Text = lastCall + btn.Text;
lblW2.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN2.Text = lastCall + btn.Text;
lblN2.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE2.Text = lastCall + btn.Text;
lblE2.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第三轮叫牌记录
#region
else if (recordCall == 3)
{
if (lblShow.Text == "南")
{
lblS3.Text = lastCall + btn.Text;
lblS3.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW3.Text = lastCall + btn.Text;
lblW3.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN3.Text = lastCall + btn.Text;
lblN3.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE3.Text = lastCall + btn.Text;
lblE3.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第四轮叫牌记录
#region
else if (recordCall == 4)
{
if (lblShow.Text == "南")
{
lblS4.Text = lastCall + btn.Text;
lblS4.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW4.Text = lastCall + btn.Text;
lblW4.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN4.Text = lastCall + btn.Text;
lblN4.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE4.Text = lastCall + btn.Text;
lblE4.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第五轮叫牌记录
#region
else if (recordCall == 5)
{
if (lblShow.Text == "南")
{
lblS5.Text = lastCall + btn.Text;
lblS5.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW5.Text = lastCall + btn.Text;
lblW5.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN5.Text = lastCall + btn.Text;
lblN5.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE5.Text = lastCall + btn.Text;
lblE5.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第六轮叫牌记录
#region
else if (recordCall == 6)
{
if (lblShow.Text == "南")
{
lblS6.Text = lastCall + btn.Text;
lblS6.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW6.Text = lastCall + btn.Text;
lblW6.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN6.Text = lastCall + btn.Text;
lblN6.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE6.Text = lastCall + btn.Text;
lblE6.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
//第七轮叫牌记录
#region
else if (recordCall == 7)
{
if (lblShow.Text == "南")
{
lblS7.Text = lastCall + btn.Text;
lblS7.ForeColor = btn.ForeColor;
lblShow.Text = "西";
ShowWest();
recordCall++;
}
else if (lblShow.Text == "西")
{
lblW7.Text = lastCall + btn.Text;
lblW7.ForeColor = btn.ForeColor;
lblShow.Text = "北";
ShowNorth();
}
else if (lblShow.Text == "北")
{
lblN7.Text = lastCall + btn.Text;
lblN7.ForeColor = btn.ForeColor;
lblShow.Text = "东";
ShowEast();
}
else if (lblShow.Text == "东")
{
lblE7.Text = lastCall + btn.Text;
lblE7.ForeColor = btn.ForeColor;
lblShow.Text = "南";
ShowSouth();
}
HideButton(btn, currentBtnNum);
}
#endregion
if (currentBtnNum == 82)
{
dO = lblShow.Text;
dFlag = true;
}
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
健康快乐歌词 美的电热水器美肤浴原理 UPS蓄电池寿命是多长 怎么正确使用保养UPS不间断电源 2000年属什么生肖配对最好 一根甘蔗有多少糖分(一根甘蔗相当于几碗米饭的热量 方法) 一根甘蔗含糖量多少(糖尿病能喝甘蔗水吗 步骤详解) ...1 4 5 B超结果:肝功能正常 脾大,脾胀 HBV-DNA〈1000为阳性 这个需 ... ...还有两个老人要养,这种情况能给多少抚养费? 离婚分居两年八个月!对方要求一次性付清抚养费另一方要求一年一给法院会... 搞笑动画《梦游》的剧情设计是怎样的? 英语成绩我最不好的``最基本开始:什么是名词,副词,形容词···等... 公安系统能通过微信号查到个人信息吗 根据法律规定霸占别人的财产怎么起诉? 知道微信号能查出来什么信息 Cann't connect to DB!什么意思 在数学中,无穷小量的定义域为哪里? 党员不被承认,其编号怎么办 碳纤维布十大品牌厂家有哪些? 根据法律规定霸占他人财产什么罪? 我曾经的部队,武警交通第五支队,我想你,更想我的战友们,库尔勒,和静县... 河南优宝莱服饰有限公司怎么样? 我想知道宿迁宝莱百货里的运动服饰里可不可以用宝莱百货礼品卡?_百度... 深圳市宝莱酷琦服饰有限公司怎么样? 广州市宝莱服饰有限公司怎么样? 从长春火车站到武警五支队怎么走 西门子440变频器模拟量输出为零 梦见好多蛆是什么意思? 西门子440变频器w相没有输出怎么办 中国古代的丞相和宰相的区别 一个男生跟我讲 如果一个一百斤的女生吃了一斤的玉米那她就不是百分之... 秦腔源于哪个地区 什么是1+X 职业技术培训 xq是什么意思xq是什么 指日可待的近义词和反义词是什么_指日可待是什么意思? 《街头霸王》系列春丽的形象变迁,玩家老了而春丽仅仅是腿粗了 怎么解除刷银联无法交易超级限额? 有点乏力是什么意思? 怎样一开始把我的山东省电子健康卡中的信息证件号退出来? ...男生回复女生好热啊,后面发个奸笑表情是什么意思? 100元人民币没有银线能换多少钱 语言处理程序的主要作用是 语言处理程序可以检查的错误是 对驰名商标侵权的方式主要有哪些 商标侵权案件构成犯罪要达到多少金额 人民币100元没有银线是假钱么? 我有一张1999年的100面值的人民币ra36861676没有银线是不是假币,看着不... 侵犯未注册驰名商标的是否构成侵权? 1990年100元人民币 无银线 ...撕开银线的部位发现并没有银线,背光也无法连成一条线,请问是假的... 如何认定驰名商标的侵权行为