WebForm1.aspx.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:3k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. namespace PCSUserCWebApp1
  12. {
  13. /// <summary>
  14. /// Summary description for WebForm1.
  15. /// </summary>
  16. public class WebForm1 : System.Web.UI.Page
  17. {
  18.       protected System.Web.UI.WebControls.RadioButtonList suitList;
  19.       protected System.Web.UI.WebControls.ImageButton clubButton;
  20.       protected System.Web.UI.WebControls.ImageButton diamondButton;
  21.       protected System.Web.UI.WebControls.ImageButton heartButton;
  22.       protected System.Web.UI.WebControls.ImageButton spadeButton;
  23.       protected PCSUserC1 myUserControl;
  24. private void Page_Load(object sender, System.EventArgs e)
  25. {
  26. // Put user code to initialize the page here
  27. }
  28. #region Web Form Designer generated code
  29. override protected void OnInit(EventArgs e)
  30. {
  31. //
  32. // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  33. //
  34. InitializeComponent();
  35. base.OnInit(e);
  36. }
  37. /// <summary>
  38. /// Required method for Designer support - do not modify
  39. /// the contents of this method with the code editor.
  40. /// </summary>
  41. private void InitializeComponent()
  42. {    
  43.          this.suitList.SelectedIndexChanged += new System.EventHandler(this.suitList_SelectedIndexChanged);
  44.          this.clubButton.Click += new System.Web.UI.ImageClickEventHandler(this.clubButton_Click);
  45.          this.diamondButton.Click += new System.Web.UI.ImageClickEventHandler(this.diamondButton_Click);
  46.          this.heartButton.Click += new System.Web.UI.ImageClickEventHandler(this.heartButton_Click);
  47.          this.spadeButton.Click += new System.Web.UI.ImageClickEventHandler(this.spadeButton_Click);
  48.          this.Load += new System.EventHandler(this.Page_Load);
  49.       }
  50. #endregion
  51.       private void suitList_SelectedIndexChanged(object sender, System.EventArgs e)
  52.       {
  53.          myUserControl.Suit = (suit)Enum.Parse(typeof(suit),
  54.             suitList.SelectedItem.Value);
  55.       }
  56.       protected void clubButton_Click(object sender, System.Web.UI.ImageClickEventArgs e)
  57.       {
  58.          myUserControl.Club();
  59.          suitList.SelectedIndex = 0;
  60.       }
  61.       protected void diamondButton_Click(object sender, System.Web.UI.ImageClickEventArgs e)
  62.       {
  63.          myUserControl.Diamond();
  64.          suitList.SelectedIndex = 1;
  65.       }
  66.       protected void heartButton_Click(object sender, System.Web.UI.ImageClickEventArgs e)
  67.       {
  68.          myUserControl.Heart();
  69.          suitList.SelectedIndex = 2;
  70.       }
  71.       protected void spadeButton_Click(object sender, System.Web.UI.ImageClickEventArgs e)
  72.       {
  73.          myUserControl.Spade();
  74.          suitList.SelectedIndex = 3;
  75.       }
  76. }
  77. }