Facebook Sharer
选择您要替换的背景颜色:
【农历新年】背景图片:
个性化设定
 注册  找回密码
查看: 4269|回复: 16
打印 上一主题 下一主题

ASP.NET问题。。

 关闭 [复制链接]

5

主题

0

好友

318

积分

超级会员

Rank: 5Rank: 5Rank: 5Rank: 5Rank: 5

跳转到指定楼层
1#
发表于 2008-11-17 09:54 PM |只看该作者 |倒序浏览
请问ASP.NET C#里可以像VB.NET那样使用MouseMove或其他VB.NET的Events吗?
如果可以要怎样做呢?




asp , NET
收藏收藏0

13

主题

0

好友

2113

积分

白金长老

Rank: 10

2#
发表于 2008-11-18 10:17 AM |只看该作者
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace @event
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {

        }
    }
}

看到   InitializeComponent();   吗???



安show all files

在安 form1.designer.cs

全部的  InitializeComponent();   收在里头



看到intellesense 了吗??



  1.    /// <summary>
  2.         /// Required method for Designer support - do not modify
  3.         /// the contents of this method with the code editor.
  4.         /// </summary>
  5.         private void InitializeComponent()
  6.         {
  7.             this.button1 = new System.Windows.Forms.Button();
  8.             this.SuspendLayout();
  9.             //
  10.             // button1
  11.             //
  12.             this.button1.Location = new System.Drawing.Point(82, 102);
  13.             this.button1.Name = "button1";
  14.             this.button1.Size = new System.Drawing.Size(75, 23);
  15.             this.button1.TabIndex = 0;
  16.             this.button1.Text = "button1";
  17.             this.button1.UseVisualStyleBackColor = true;
  18.             this.button1.Click += new System.EventHandler(this.button1_Click);
  19.             //
  20.             // Form1
  21.             //
  22.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  23.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  24.             this.ClientSize = new System.Drawing.Size(284, 264);
  25.             this.Controls.Add(this.button1);
  26.             this.Name = "Form1";
  27.             this.Text = "Form1";
  28.             this.ResumeLayout(false);

  29.         }
复制代码




自己找找看


回复

使用道具 举报

5

主题

0

好友

318

积分

超级会员

Rank: 5Rank: 5Rank: 5Rank: 5Rank: 5

3#
发表于 2008-11-18 09:17 PM |只看该作者
谢谢你宝贵的资料,明天我去公司testing.


回复

使用道具 举报

5

主题

0

好友

318

积分

超级会员

Rank: 5Rank: 5Rank: 5Rank: 5Rank: 5

4#
发表于 2008-11-19 09:36 PM |只看该作者
好日子版主,我试过你的guide了好像只能用在windows application,web form好像不行。


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

5#
发表于 2008-11-19 10:30 PM |只看该作者




上面的 web 的

但mouse move 啊

只有指定的 能而已


Event HandlersNew to HTML 4.0 was the ability to let HTML events trigger actions in the browser, like starting a JavaScript when a user clicks on an HTML element. Below is a list of the attributes that can be inserted into HTML tags to define event actions.
FF: Firefox, N: Netscape, IE: Internet Explorer
AttributeThe event occurs when...FFNIEonabortLoading of an image is interrupted134onblurAn element loses focus123onchangeThe user changes the content of a field123onclickMouse clicks an object123ondblclickMouse double-clicks an object144onerrorAn error occurs when loading a document or an image134onfocusAn element gets focus123onkeydownA keyboard key is pressed143onkeypressA keyboard key is pressed or held down143onkeyupA keyboard key is released143onloadA page or an image is finished loading123onmousedownA mouse button is pressed144onmousemoveThe mouse is moved163onmouseoutThe mouse is moved off an element144onmouseoverThe mouse is moved over an element123onmouseupA mouse button is released144onresetThe reset button is clicked134onresizeA window or frame is resized144onselectText is selected123onsubmitThe submit button is clicked123onunloadThe user exits the page123

请看下面的参考

http://www.w3schools.com/jsref/jsref_events.asp


回复

使用道具 举报

1

主题

0

好友

149

积分

高级会员

Rank: 3Rank: 3Rank: 3

6#
发表于 2008-11-30 11:18 AM |只看该作者
板主你好利害啊. 你是神吗?


回复

使用道具 举报

62

主题

5

好友

3715

积分

本站名嘴

Rank: 11Rank: 11

7#
发表于 2008-12-24 04:59 PM |只看该作者

回复 #6 gsem980 的帖子

ASP.NET 原来可以这样啊,可以像WinForm那样的


回复

使用道具 举报

13

主题

0

好友

2113

积分

白金长老

Rank: 10

8#
发表于 2008-12-25 01:03 AM |只看该作者
没差什么的 只是 state control 不同而已
学 一个 vb.net 会完全部的 winform  webform mobileform


回复

使用道具 举报

62

主题

5

好友

3715

积分

本站名嘴

Rank: 11Rank: 11

9#
发表于 2008-12-25 11:09 AM |只看该作者

回复 #8 goodday 的帖子

那么划算啊em0036


回复

使用道具 举报

2

主题

0

好友

209

积分

支柱会员

Rank: 4Rank: 4Rank: 4Rank: 4

10#
发表于 2009-1-19 01:47 AM |只看该作者
厉害!em0012
InitializeComponent(); 是用来做什么的?
对window based project 没有什么头绪


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

JBTALKS.CC |联系我们 |隐私政策 |Share

GMT+8, 2024-12-26 02:16 PM , Processed in 0.134449 second(s), 26 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

Ultra High-performance Dedicated Server powered by iCore Technology Sdn. Bhd.
Domain Registration | Web Hosting | Email Hosting | Forum Hosting | ECShop Hosting | Dedicated Server | Colocation Services
本论坛言论纯属发表者个人意见,与本论坛立场无关
Copyright © 2003-2012 JBTALKS.CC All Rights Reserved
合作联盟网站:
JBTALKS 马来西亚中文论坛 | JBTALKS我的空间 | ICORE TECHNOLOGY SDN. BHD.
回顶部