Default.aspx.cs
上传用户:crystal
上传日期:2022-08-11
资源大小:33k
文件大小:4k
源码类别:

界面编程

开发平台:

C#

  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. using EeekSoft.Web;
  12. //��Դ�������www.51aspx.com(ԣ����������)
  13. namespace EeekSoft.PopupTest
  14. {
  15.     /// <summary>
  16.     /// Testing page...
  17.     /// </summary>
  18.     public partial class Default : System.Web.UI.Page
  19.     {
  20.         #region Web Form Designer generated code
  21.         protected System.Web.UI.WebControls.TextBox TextTitle;
  22.         protected EeekSoft.Web.PopupWin PopupWin1;
  23.         protected EeekSoft.Web.PopupWinAnchor PopupWinAnchor1;
  24.         override protected void OnInit(EventArgs e)
  25.         {
  26.             //
  27.             // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  28.             //
  29.             InitializeComponent();
  30.             base.OnInit(e);
  31.         }
  32.         /// <summary>
  33.         /// Required method for Designer support - do not modify
  34.         /// the contents of this method with the code editor.
  35.         /// </summary>
  36.         private void InitializeComponent()
  37.         {
  38.         }
  39.         #endregion
  40.         protected void Page_Load(object sender, System.EventArgs e)
  41.         {
  42.             lblMsg.Visible = false;
  43.             popupBob.Visible = popupWin2.Visible = popupWin.Visible = false;
  44.         }
  45.         protected void btnPopup_Click(object sender, System.EventArgs e)
  46.         {
  47.             popupWin.HideAfter = (sender == null) ? -1 : 5000;
  48.             popupWin.Visible = true;
  49.             popupWin.Title = textTitle.Text;
  50.             popupWin.Message = textMsg.Text;
  51.             popupWin.Text = textFull.Text;
  52.             popupWin.DragDrop = (dropDrag.SelectedIndex == 0);
  53.             switch (popDocking.SelectedIndex)
  54.             {
  55.                 case 0: popupWin.DockMode = EeekSoft.Web.PopupDocking.BottomLeft; break;
  56.                 case 1: popupWin.DockMode = EeekSoft.Web.PopupDocking.BottomRight; break;
  57.             }
  58.             switch (clrStyle.SelectedIndex)
  59.             {
  60.                 case 0: popupWin.ColorStyle = EeekSoft.Web.PopupColorStyle.Red; break;
  61.                 case 1: popupWin.ColorStyle = EeekSoft.Web.PopupColorStyle.Green; break;
  62.                 case 2: popupWin.ColorStyle = EeekSoft.Web.PopupColorStyle.Blue; break;
  63.                 case 3: popupWin.ColorStyle = EeekSoft.Web.PopupColorStyle.Violet; break;
  64.             }
  65.             popupWin2.Visible = false;
  66.         }
  67.         protected void btn4Ever_Click(object sender, System.EventArgs e)
  68.         {
  69.             btnPopup_Click(null, null);
  70.         }
  71.         protected void btnTwo_Click(object sender, System.EventArgs e)
  72.         {
  73.             btnPopup_Click(sender, e);
  74.             popupWin2.DockMode = popupWin.DockMode;
  75.             popupWin2.DragDrop = (dropDrag.SelectedIndex == 0);
  76.             popupWin2.Visible = true;
  77.         }
  78.         protected void popupWin2_LinkClick(object sender, System.EventArgs e)
  79.         {
  80.             lblMsg.Text = "Hey ! You clicked on link on second popup !!";
  81.             lblMsg.Visible = true;
  82.         }
  83.         protected void popupWin2_PopupClose(object sender, System.EventArgs e)
  84.         {
  85.             lblMsg.Text = "Hey ! You closed second popup !!";
  86.             lblMsg.Visible = true;
  87.         }
  88.         protected void btnBob_Click(object sender, System.EventArgs e)
  89.         {
  90.             popupBob.Visible = true;
  91.             popupBob.DragDrop = (dropDrag.SelectedIndex == 0);
  92.         }
  93.     }
  94. }