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

C#编程

开发平台:

Others

  1. namespace PCSUserCWebApp1
  2. {
  3. using System;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.UI.WebControls;
  8. using System.Web.UI.HtmlControls;
  9.    public enum suit
  10.    {
  11.       club, diamond, heart, spade
  12.    }
  13. public class PCSUserC1 : System.Web.UI.UserControl
  14. {
  15.       protected System.Web.UI.WebControls.Image suitPic;
  16.       protected System.Web.UI.WebControls.Label suitLabel;
  17.       protected suit currentSuit;
  18. private void Page_Load(object sender, System.EventArgs e)
  19. {
  20. // Put user code to initialize the page here
  21. }
  22.       public suit Suit
  23.       {
  24.          get
  25.          {
  26.             return currentSuit;
  27.          }
  28.          set
  29.          {
  30.             currentSuit = value;
  31.             suitPic.ImageUrl = currentSuit.ToString() + ".bmp";
  32.             suitLabel.Text = currentSuit.ToString();
  33.          }
  34.       }
  35.       public void Club()
  36.       {
  37.          Suit = suit.club;
  38.       }
  39.       public void Diamond()
  40.       {
  41.          Suit = suit.diamond;
  42.       }
  43.       public void Heart()
  44.       {
  45.          Suit = suit.heart;
  46.       }
  47.       public void Spade()
  48.       {
  49.          Suit = suit.spade;
  50.       }
  51. #region Web Form Designer generated code
  52. override protected void OnInit(EventArgs e)
  53. {
  54. //
  55. // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  56. //
  57. InitializeComponent();
  58. base.OnInit(e);
  59. }
  60. /// <summary>
  61. /// Required method for Designer support - do not modify
  62. /// the contents of this method with the code editor.
  63. /// </summary>
  64. private void InitializeComponent()
  65. {
  66.          this.Load += new System.EventHandler(this.Page_Load);
  67.       }
  68. #endregion
  69. }
  70. }